Re: Need help with a simple (I think) Perl script
- From: Uri Guttman <uri@xxxxxxxxxxxxxxx>
- Date: Thu, 29 May 2008 05:33:33 GMT
"FS" == Frank Seitz <devnull4711@xxxxxx> writes:
FS> $\ = undef;
that should be $/. this is another reason File::Slurp is useful. no need
to know this.
FS> open my $fh,'<',$pdffile or die $!;
FS> print <$fh>;
use File::Slurp ;
print read_file( $pdffile ) ;
uri
--
Uri Guttman ------ uri@xxxxxxxxxxxxxxx -------- http://www.sysarch.com --
----- Perl Code Review , Architecture, Development, Training, Support ------
--------- Free Perl Training --- http://perlhunter.com/college.html ---------
--------- Gourmet Hot Cocoa Mix ---- http://bestfriendscocoa.com ---------
.
- Follow-Ups:
- Re: Need help with a simple (I think) Perl script
- From: Frank Seitz
- Re: Need help with a simple (I think) Perl script
- References:
- Need help with a simple (I think) Perl script
- From: *** Sutton
- Re: Need help with a simple (I think) Perl script
- From: Frank Seitz
- Need help with a simple (I think) Perl script
- Prev by Date: Re: Need help with a simple (I think) Perl script
- Next by Date: Re: Need help with a simple (I think) Perl script
- Previous by thread: Re: Need help with a simple (I think) Perl script
- Next by thread: Re: Need help with a simple (I think) Perl script
- Index(es):