Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    }
    close $ifh or die "tac $INFILE: ".($!||"\$?=$?");
    close $ofh or die "tac (out): ".($!||"\$?=$?");
    
  2. or download this
    use warnings;
    use strict;
    ...
        seek $fh, 0, 0 or die "seek $INFILE: $!";
    }
    close $fh;