2024年5月11日土曜日

Linux findとgrepでファイル内文字列検索

# 現在のディレクトリ以下にある「xyz*」ファイル内に「aiueo」が含まれているものを検索する

$ find . -name 'xyz*' -type f -print0 | xargs -0 grep aiueo


# 現在のディレクトリ以下にあるphpファイル内に「aiueo」が含まれているものを検索する

$ find . -name '*.php' -print0 | xargs -0 grep aiueo


# /var/www/htmlディレクトリ以下にあるファイル内に「aiueo」が含まれているものを検索する

$ find /var/www/html -type f -print0 | xargs -0 grep aiueo


0 件のコメント:

コメントを投稿