in reply to File::Slurp Not As Efficient As OPEN / CLOSE
I always use this when I want speed
#!/usr/bin/perl open (FH,"< slurp1"); read( FH, $buf, -s FH ); close FH; print "$buf\n"; [download]