|
|
| Pathologically Eclectic Rubbish Lister | |
| PerlMonks |
Re^3: Email Forwardingby aitap (Chaplain) |
| on Feb 05, 2013 at 18:42 UTC ( #1017248=note: print w/ replies, xml ) | Need Help?? |
|
Then use one of the modules specified to read and parse the text going from STDIN. You can read from STDIN filehandle using diamond operator (<>), like this: my $whole_message = do { local $/; <STDIN> }; (see also $/ for more information on slurping filehandle contents).
Sorry if my advice was wrong.
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||