tail -n +$N inputFile > outputFile Where $N is the number of the line which you want to start printing from. For example if you want to delete only the first line / start printing from the second line you must issue the following: tail -n +2 inputFile > outputFile
(How) to delete all empty lines from a file: cat someFile | grep -v '^$' (How) to get all numbers that have no sign in front of them (all positive numbers, from a file where on each line there is one number only): cat someFile | grep ^[0-9] (How) to…
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: