Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
open(REQUESTS,"/home/picturesea/housekeeping/requestsdeadline3.txt") | +| die "requestsdeadline3 file not found";<br> <br> # Open The Mail Program<br> open(MAIL,"|$mailprog -t");<br> <br> @requests = split(/-|/, <REQUESTS>);<br> foreach $requests (@requests) {<br> print MAIL "Bcc: $requests\n";<br> print MAIL "Subject: PICTURE SEARCH request - deadline expired\n +\n";<br> print MAIL "$requests";<br> print MAIL "$requests";<br> print MAIL "$requests";<br> print MAIL "$requests";<br> }<br> close(REQUESTS);<br>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: processing text from flat file
by mirod (Canon) on Oct 01, 2001 at 23:11 UTC | |
by blakem (Monsignor) on Oct 02, 2001 at 01:17 UTC | |
|
Re: processing text from flat file
by jeroenes (Priest) on Oct 01, 2001 at 21:37 UTC | |
|
Re: processing text from flat file
by suaveant (Parson) on Oct 01, 2001 at 21:39 UTC | |
|
Re: processing text from flat file
by meonkeys (Chaplain) on Oct 01, 2001 at 22:22 UTC | |
|
Re: processing text from flat file
by derby (Abbot) on Oct 02, 2001 at 01:57 UTC |