Skip to content

Instantly share code, notes, and snippets.

@manfe
Created October 24, 2012 19:59
Show Gist options
  • Save manfe/3948445 to your computer and use it in GitHub Desktop.
Save manfe/3948445 to your computer and use it in GitHub Desktop.
Removing First 2 lines from file (Shell Command)
awk '{ if( NR > 2 ) { print } }' file > outputfile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment