Skip to content

Instantly share code, notes, and snippets.

@uemuraj
Created February 1, 2023 00:13
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 uemuraj/26e3433b80c4ef4872213bfa5e2ab575 to your computer and use it in GitHub Desktop.
Save uemuraj/26e3433b80c4ef4872213bfa5e2ab575 to your computer and use it in GitHub Desktop.
コマンドラインオプションの覚書

grep のオプション

  • -E 正規表現を使う
  • -c 数を数えるだけ
  • -o マッチした単語だけ(行全体は出力しない)
  • -h ファイル名を出力しない(ソートの邪魔にならない)

sort のオプション

  • -t , カンマをフィールドの区切り文字にする
  • -k 8n 8番目のフィールドを数値として並べ替える

cut のオプション

  • -d , カンマをフィールドの区切り文字にする
  • -f -8 1~8番目のフィールドを出力
  • -f 8- 8番目~最後のフィールドまでを出力
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment