GNU/Linux >> Linux の 問題 >  >> Linux

特定の検索文字列を含まないファイルを見つける方法

grep の「-L」オプションを使いたい :

 -L, --files-without-match
         Only the names of files not containing selected lines are written to standard output.  Path-
         names are listed once per file searched.  If the standard input is searched, the string
         ``(standard input)'' is written.

「L」フラグを追加するだけです。これは逆です

find /Users/me/PDFFiles/  -type f -name "*.pdf" -exec grep -HL 'Font' '{}' ';'

Linux
  1. ディレクトリを検索し、正規表現に一致するファイルを見つけるにはどうすればよいですか?

  2. x 文字を超える文字列を含むファイルを検索するには、grep を使用しますか?

  3. で始まるが含まないファイルを削除する

  1. Linuxでファイルを見つける方法

  2. Ubuntuでファイルを見つける方法は?

  3. ファイルに文字列を含む行を取得するには?

  1. 特定の時間内に変更されたファイルを一覧表示するにはどうすればよいですか?

  2. サイズと拡張子でファイルを検索する方法は?

  3. パターンに一致する特定のファイルを検索する方法は?