in reply to Re: How to reverse a huge file in Perl?
in thread How to reverse a huge file in Perl?

tac is also available for win32 e.g.
C:\mycode>perl -le "print $_ for qw[spam bacon eggs]" > things.txt C:\mycode>cat things.txt spam bacon eggs C:\mycode>tac things.txt eggs bacon spam