in reply to Re^3: Deleting first and last lines of a text filein thread Deleting first and last TWO(2) lines of a text file
perl -i.old -ne 'my $l = <>; print($l), next if $.==2; print "$_$l" un +less eof' /home/file_20140319.txt [download]