44
40

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

find, xargs, grepコマンドで検索 備忘メモ

Posted at

実行コマンド

$ find ファイルパス -type f | xargs grep -n '検索したい文字列'
  • ファイル内の対象の文字列を検索
  • ヒットしたファイルのみ出力

コマンド解説

出力結果

$ find . -type f | xargs grep -n 'hoge'
./xxx/yyy/zzz/sample.php:100:        public function hoge()
・
・
・
  • 上記のように出力される
44
40
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
44
40

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?