Page is a not externally linkable
dkubb - 4:18 am on Feb 2, 2004 (gmt 0)
Here's my favorite way to "slurp" a file into a scalar: open FILE, 'inputfile' or die "Could not open file inputfile: $!";
sysread(FILE, my $content, -s FILE);
close FILE or die "Could not close file: $!";