- or download this
# slurp the email from STDIN
my( $raw );
{ local $/ = undef; local *FILE; open FILE, "-"; $raw = <FILE>; close
+FILE }
- or download this
# slurp the email from STDIN
my $raw; { local $/; $raw = <STDIN>; }
- or download this
my( $raw_iohandle ) = new IO::Scalar( \$raw );
- or download this
my $raw_iohandle = new IO::Scalar( \$raw );
- or download this
open(my $raw_iohandle, '<', \$raw );