http://qs321.pair.com?node_id=964226


in reply to Re^2: Common Perl Pitfalls
in thread Common Perl Pitfalls

The third solution isn't as portable, though.
cat is probably available on more platforms than perl is. Of course, Windows rules the world, and both cat and perl are ported to Windows -- and, AFAIK, neither comes standard with the OS. Unlike cat, perl is not included in the POSIX standard for shell utilities.

Why do you think redefining $/ as I did is a potential problem?
Well, you consider someone modifying the code to be a potential problem. Would if someone modifies your code, and adds a return after the first assignment to $/, but before the second? Would if someone wraps the code in an eval, and the read triggers an exception?

Replies are listed 'Best First'.
Re^4: Common Perl Pitfalls
by Joe_ (Beadle) on Apr 10, 2012 at 15:14 UTC

    Well, that's a tad too advanced for me at the moment. But thanks for sharing your insight. And I had no idea that cat was ported to Windows. I was never what you can call a Windows power user. Thankfully, I switched to Linux :)