99

で終わるファイルを検索したいのですが、フォルダー内_peaks.bedのファイルを除外します。tmpscripts

私のコマンドは次のようなものです:

 find . -type f \( -name "*_peaks.bed" ! -name "*tmp*" ! -name "*scripts*" \)

しかし、それはうまくいきませんでした。tmpおよびフォルダ内のファイルscriptは引き続き表示されます。

誰かがこれについてアイデアを持っていますか?

4

7 に答える 7

209

これを指定する方法は次の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、パス全体を考慮します=)

于 2013-01-03T02:34:07.387 に答える
8

これがあなたがそれをすることができる1つの方法です...

find . -type f -name "*_peaks.bed" | egrep -v "^(./tmp/|./scripts/)"
于 2013-01-03T02:28:15.050 に答える
6

使用する

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

-printfindによって追加されます-そのため、ほとんどの場合、式に追加する必要はありません。また、-prunetrueを返すため、「。/script」と「./tmp」を出力します。

-prune常にfalseを返すように切り替えたため、他の場合は必要ありません。

ヒント:どのパスがチェックfind -D opt expr 2>&1 1>/dev/nullされているかを確認するために、それがどのように最適化および拡張されているかを確認するために使用できます。
find -D search expr 2>&1 1>/dev/null

于 2020-08-21T12:53:20.333 に答える
1

私にとって、このソリューションは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
于 2017-03-25T18:18:22.397 に答える
1

以下で試すことができます:

find ./ ! \( -path ./tmp -prune \) ! \( -path ./scripts -prune \) -type f -name '*_peaks.bed'
于 2017-12-06T04:00:38.127 に答える
0

次のようなものを試してください

find . \( -type f -name \*_peaks.bed -print \) -or \( -type d -and \( -name tmp -or -name scripts \) -and -prune \)

少し間違えても驚かないでください。目標が(印刷ではなく)幹部である場合は、代わりに使用してください。

于 2013-01-03T02:31:49.167 に答える
0

これらの説明であなたはあなたの目的と他の多くを満たします。やりたいように各パートに参加するだけです。

モデル

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",' -- {} \;)
于 2022-01-16T01:17:32.237 に答える