Skip to content

Instantly share code, notes, and snippets.

@soruma
Created March 11, 2018 13:36
Show Gist options
  • Save soruma/9e4160b93a725ee1c47e523e9c19854a to your computer and use it in GitHub Desktop.
Save soruma/9e4160b93a725ee1c47e523e9c19854a to your computer and use it in GitHub Desktop.

grep

$ grep -rn <検索したい文字列> <ディレクトリ1> (<ディレクトリ2>...) --exclude-dir=<除外したいディレクトリ> 
オプション 機能
-r ディレクトリを再帰的に検索
-n 行番号を表示
--exclude ファイルを除外する
--exclude-dir ディレクトリを除外する
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment