Home
Blog
All tags
Pieces of code
Bioinfo trainings
Machine learning
Online books
Coursera
Teaching
Contact
CV
View on GitHub
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
]