で終わるファイルを検索したいのですが、フォルダー内_peaks.bed
のファイルを除外します。tmp
scripts
私のコマンドは次のようなものです:
find . -type f \( -name "*_peaks.bed" ! -name "*tmp*" ! -name "*scripts*" \)
しかし、それはうまくいきませんでした。tmp
およびフォルダ内のファイルscript
は引き続き表示されます。
誰かがこれについてアイデアを持っていますか?
これを指定する方法は次のfind
とおりです。
find . -type f -name "*_peaks.bed" ! -path "./tmp/*" ! -path "./scripts/*"
説明:
find .
-現在の作業ディレクトリから検索を開始します(デフォルトでは再帰的に)-type f
-find
結果にファイルのみを含めるように指定します-name "*_peaks.bed"
-名前がで終わるファイルを探します_peaks.bed
! -path "./tmp/*"
-パスがで始まるすべての結果を除外します./tmp/
! -path "./scripts/*"
-パスがで始まるすべての結果も除外します./scripts/
ソリューションのテスト:
$ mkdir a b c d e
$ touch a/1 b/2 c/3 d/4 e/5 e/a e/b
$ find . -type f ! -path "./a/*" ! -path "./b/*"
./d/4
./c/3
./e/a
./e/b
./e/5
あなたはかなり近かった、-name
オプションはベース名のみを考慮しますが-path
、パス全体を考慮します=)
これがあなたがそれをすることができる1つの方法です...
find . -type f -name "*_peaks.bed" | egrep -v "^(./tmp/|./scripts/)"
使用する
find \( -path "./tmp" -o -path "./scripts" \) -prune -o -name "*_peaks.bed" -print
また
find \( -path "./tmp" -o -path "./scripts" \) -prune -false -o -name "*_peaks.bed"
また
find \( -path "./tmp" -path "./scripts" \) ! -prune -o -name "*_peaks.bed"
順序は重要です。左から右に評価します。常にパスの除外から始めます。
ディレクトリ全体を除外するために-not
(または)を使用しないでください。!
を使用し-prune
ます。マニュアルで説明されているように:
−prune The primary shall always evaluate as true; it
shall cause find not to descend the current
pathname if it is a directory. If the −depth
primary is specified, the −prune primary shall
have no effect.
およびGNU検索マニュアル:
-path pattern
[...]
To ignore a whole
directory tree, use -prune rather than checking
every file in the tree.
実際、を使用する-not -path "./pathname"
と、findは。の下の各ノードの式を評価します"./pathname"
。
検索式は単なる条件評価です。
\( \)
-グループ操作(を使用できますが-path "./tmp" -prune -o -path "./scripts" -prune -o
、より冗長です)。-path "./script" -prune
--true-path
を返し、ディレクトリである場合、そのディレクトリに対してtrueを返し、そのディレクトリに降りないでください。-path "./script" ! -prune
-として評価され(-path "./script") AND (! -prune)
ます。プルーンの「常に真」を常に偽に戻します。一致としての印刷を回避"./script"
します。-path "./script" -prune -false
--prune
常にtrueを返すので、それに従って-false
、と同じことを行うことができます!
。-o
-OR演算子。2つの式の間に演算子が指定されていない場合、デフォルトでAND演算子になります。したがって、次の\( -path "./tmp" -o -path "./scripts" \) -prune -o -name "*_peaks.bed" -print
ように拡張されます。
[ (-path "./tmp" OR -path "./script") AND -prune ] OR ( -name "*_peaks.bed" AND print )
印刷がないと次のように拡張されるため、ここでは印刷が重要です。
{ [ (-path "./tmp" OR -path "./script" ) AND -prune ] OR (-name "*_peaks.bed" ) } AND print
-print
findによって追加されます-そのため、ほとんどの場合、式に追加する必要はありません。また、-prune
trueを返すため、「。/script」と「./tmp」を出力します。
-prune
常にfalseを返すように切り替えたため、他の場合は必要ありません。
ヒント:どのパスがチェックfind -D opt expr 2>&1 1>/dev/null
されているかを確認するために、それがどのように最適化および拡張されているかを確認するために使用できます。
find -D search expr 2>&1 1>/dev/null
私にとって、このソリューションはfindを使用したコマンドexecで機能しませんでした。理由はよくわかりません。したがって、私のソリューションは
find . -type f -path "./a/*" -prune -o -path "./b/*" -prune -o -exec gzip -f -v {} \;
説明:サンプソンチェンのものと同じですが、
-prune-の手続きパスを無視します...
-o-一致しない場合は、結果を出力します(ディレクトリを整理し、残りの結果を出力します)
18:12 $ mkdir a b c d e
18:13 $ touch a/1 b/2 c/3 d/4 e/5 e/a e/b
18:13 $ find . -type f -path "./a/*" -prune -o -path "./b/*" -prune -o -exec gzip -f -v {} \;
gzip: . is a directory -- ignored
gzip: ./a is a directory -- ignored
gzip: ./b is a directory -- ignored
gzip: ./c is a directory -- ignored
./c/3: 0.0% -- replaced with ./c/3.gz
gzip: ./d is a directory -- ignored
./d/4: 0.0% -- replaced with ./d/4.gz
gzip: ./e is a directory -- ignored
./e/5: 0.0% -- replaced with ./e/5.gz
./e/a: 0.0% -- replaced with ./e/a.gz
./e/b: 0.0% -- replaced with ./e/b.gz
以下で試すことができます:
find ./ ! \( -path ./tmp -prune \) ! \( -path ./scripts -prune \) -type f -name '*_peaks.bed'
次のようなものを試してください
find . \( -type f -name \*_peaks.bed -print \) -or \( -type d -and \( -name tmp -or -name scripts \) -and -prune \)
少し間違えても驚かないでください。目標が(印刷ではなく)幹部である場合は、代わりに使用してください。
これらの説明であなたはあなたの目的と他の多くを満たします。やりたいように各パートに参加するだけです。
モデル
find ./\
-iname "some_arg" -type f\ # File(s) that you want to find at any hierarchical level.
! -iname "some_arg" -type f\ # File(s) NOT to be found on any hirearchic level (exclude).
! -path "./file_name"\ # File(s) NOT to be found at this hirearchic level (exclude).
! -path "./folder_name/*"\ # Folder(s) NOT to be found on this Hirearchic level (exclude).
-exec grep -IiFl 'text_content' -- {} \; # Text search in the content of the found file(s) being case insensitive ("-i") and excluding binaries ("-I").
例
find ./\
-iname "*" -type f\
! -iname "*pyc" -type f\
! -path "./.gitignore"\
! -path "./build/*"\
! -path "./__pycache__/*"\
! -path "./.vscode/*"\
! -path "./.git/*"\
-exec grep -IiFl 'title="Brazil - Country of the Future",' -- {} \;
ありがとう!
[参照: https://unix.stackexchange.com/q/73938/61742]
追加:
上記のコマンドをお気に入りのエディターと一緒に使用して、見つかったファイルの内容を分析できます。たとえば、...
vim -p $(find ./\
-iname "*" -type f\
! -iname "*pyc" -type f\
! -path "./.gitignore"\
! -path "./build/*"\
! -path "./__pycache__/*"\
! -path "./.vscode/*"\
! -path "./.git/*"\
-exec grep -IiFl 'title="Brazil - Country of the Future",' -- {} \;)