On 11/2/06, Scott Morris <scottmmorris at hotpop.com> wrote: > I have this bash script, as follows: > > #!/bin/sh > RECIP=scottmmorris at hotpop.com > SUBJECT="Running on `hostname`" > ls | mail -s ""$SUBJECT" - sent" "$RECIP" Try ls | mail -s "$SUBJECT - sent" $RECIP or ls | mail -s "\"$SUBJECT\" - sent" $RECIP instead. Michael