Print a file, skipping the first X lines, in Bash [duplicate]
You’ll need tail. Some examples: $ tail great-big-file.log < Last 10 lines of great-big-file.log > If you really need to SKIP a particular number of “first” lines, use $ tail -n +<N+1> <filename> < filename, excluding first N lines. > That is, if you want to skip N lines, you start printing line N+1. Example: … Read more