LINUX指定文字列を含むファイルの検索
622 ワード
grepコマンドを使用して、xxxは検索対象文字列です. grep -s xxx/etc/* grep-Rxxx/etc/*サブディレクトリ再帰検索 を含む grep-Rw xxx/etc/*w-xxxxxを含む は見つかりません. grep-Rl xxx/etc/*出力ファイル名 のみ grep-Ril xxx/etc/*大文字と小文字を無視 grep -Ril xxx/etc/*.conf grep -Ril --exclude=*.conf xxx/etc/* .confファイルは を検索しません grep --exclude-dir=/etc/grub.d-Rwl xxx/etc/*排除/etc/grub.dディレクトリ grep -Rni xxx/etc/*.conf n-出力文字列の行番号 grep-Rlv xxx/etc/*xxxを含まないすべてのファイルを検索
grep :
-R
-w
-l
-i
--exclude=
--exclude-dir
-n
-v ,