Gnu tail
From wikinotes
Obtain last N lines from a file (or watch it as it updates).
cat foo.txt | tail -n+2 # tail all lines, starting with line 2 (skipping first line)
Obtain last N lines from a file (or watch it as it updates).
cat foo.txt | tail -n+2 # tail all lines, starting with line 2 (skipping first line)