in reply to Re^2: Deleting first and last lines of a text file
in thread Deleting first and last TWO(2) lines of a text file
Note that this is a one-liner to be run as is from the command-line (adjust your input file-name).perl -i.old -ne 'my $l = <>; print($l), next if $.==2; print "$_$l" un +less eof' input.txt
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Deleting first and last lines of a text file
by vsmeruga (Acolyte) on May 16, 2014 at 12:36 UTC |