Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
and then I have fileA which has list of all filenames one line at a time.... this is what I did to send both info by email to me$message = "some text I want to send by email"
my output from the file are all read in online somthing like:$message = $message . "`cat $fileA`"; $messageToSend | mailx commad
I do not want to open the file and read one line at a time and so on... I need somthing like this<file1 <file2 <file3
and so on not on concatenated in one line . thanks for any help<file1 <file 2
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: email output
by dragonchild (Archbishop) on Aug 26, 2004 at 15:01 UTC | |
|
Re: email output
by csuhockey3 (Curate) on Aug 26, 2004 at 18:13 UTC |