http://www.perlmonks.org?node_id=470418


in reply to Favourite One-liners?

It is impossible for me to have a favorite one-liner. Anything I have to type often enough to become a "favorite" would have already been comitted to a script so I wouldn't have to recreate it every time.

That said, your code perl -e 'print <>' filename is a pathological form of cat filename, type filename, or perl -pe1 filename. You load the entire file into memory before printing it while the operation should normally only load a single line at a time (ignore the buffer, please). You're wasting tons of memory when you do that and for no good reason.

Replies are listed 'Best First'.
Re^2: Favourite One-liners?
by ghenry (Vicar) on Jun 27, 2005 at 23:48 UTC

    The reason is just because I always remember it. No other reason than that.

    There are plenty of other versions available if I was really concerned about it though, but thanks anyway.

    Walking the road to enlightenment... I found a penguin and a camel on the way.....
    Fancy a yourname@perl.me.uk? Just ask!!!