Bash: head: Remove last N lines from file 4
1 | head -n -$N inputFile > outputFile |
Where $N
is the number of the line from the end which you want to stop printing.
For example if you want to delete the last line you must issue the following:
1 | head -n -1 inputFile > outputFile |