Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nepsilon/31b2fad641b7aa96efb7c205c2bc648b to your computer and use it in GitHub Desktop.
Save nepsilon/31b2fad641b7aa96efb7c205c2bc648b to your computer and use it in GitHub Desktop.
How to remove the first X lines of a file? — First published in fullweb.io issue #83

How to remove the first X lines of a file?

Easy, with GNU tail to the rescue:

tail -n +X file.txt

Where -n prints the last lines, but the + inverts this and starts from the top of the file.

So tail -n +2 file.txt will print the whole file, minus its first line. Using +1 would just print the whole file unchanged.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment