bash - skip n first lines with tail

01 Apr 2018

For example, to skip the first two lines of a file:

tail -q -n+2 myfile.txt
[ bash  ]