Yes, There's More Than One Way To Do It™, but there must be a canonical or most efficient or most concise way (the latter perhaps being at odds). I'll add answers I know of and see what percolates to the top.
|
6
|
|||||||||
|
|
|
How about this:
|
||||||
|
|
|
Here is a nice comparison of the most popular ways to do it: http://poundcomment.wordpress.com/2009/08/02/perl-read-entire-file/ |
|||
|
|
|
|
|
|||
|
|
|
|
In writing File::Slurp (which is the best way), Uri Guttman did a lot of research in the many ways of slurping and which is most efficient. He wrote down his findings here and incorporated them info File::Slurp. |
||
|
|
|
|
This is neither fast, nor platform independent, and really evil, but it's short (and I've seen this in Larry Wall's code ;-):
Kids, don't do that at home ;-). |
||
|
|
|
|
mmap (Memory mapping) of strings may be useful when you:
|
||
|
|
|
|
Things to think about (especially when compared with other solutions):
So I get:
I'm not a big fan of magic <> except when actually using magic <>. Instead of faking it out, why not just use the open call directly? It's not much more work, and is explicit. (True magic <>, especially when handling "-", is far more work to perfectly emulate, but we aren't using it here anyway.) |
||
|
|
|
I like doing this with a
If you need this to be a bit more robust, you can easily turn this into a subroutine. If you need something really robust that handles all sorts of special cases, use File::Slurp. Even if you aren't going to use it, take a look at the source to see all the wacky situations it has to handle. |
||||||||
|
|
|
See the summary of Perl6::Slurp which is incredibly flexible and generally does the right thing with very little effort. |
|||
|
|
|
|
Candidate for the worst way to do it! (See comment.)
|
||||||
|
|
|
|
||
|
|
|
|
|
||||
|
|
|
|
||||
|
