in reply to Re: How to reverse a huge file in Perl?in thread How to reverse a huge file in Perl?
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 [download]