Skip to content

Instantly share code, notes, and snippets.

@acro5piano
Last active July 12, 2016 02:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save acro5piano/640f5bb1aaae49f0d9f7af3ba617ba86 to your computer and use it in GitHub Desktop.
Save acro5piano/640f5bb1aaae49f0d9f7af3ba617ba86 to your computer and use it in GitHub Desktop.
テキストファイルの1行目以降を出力 ref: http://qiita.com/acro5piano/items/3639c7f70c17f110b532
k-gosho@kgosho-ubuntu ~ % cat languages.txt
id,name
1,"Ruby"
2,"Perl"
3,"PHP"
k-gosho@kgosho-ubuntu ~ % cat languages.txt | awk 'NR > 1'
1,"Ruby"
2,"Perl"
3,"PHP"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment