tail
I didn’t know tail could be used to skip lines in a file:
Numbers having a leading plus (`+') sign are relative to the beginning of the input
# skip first line, start from second line
tail -n+2 file
I didn’t know tail could be used to skip lines in a file:
Numbers having a leading plus (`+') sign are relative to the beginning of the input
# skip first line, start from second line
tail -n+2 file