Given a text file of unknown length, how can I read, for example all but the first 2 lines of the file? I know tail will give me the last N lines, but
tail
A simple solution using awk:
awk 'NR > 2 { print }' file.name