このコマンドを使用して見つかったfind
すべてのファイルに対して特定のコマンドをどのように実行できますか?質問の目的に基づいてで見つかったすべてのファイルを削除したいとしますfind
。
答え1
編集する:以下の回答は一般的な使い方を説明していますが、ファイルとディレクトリを削除することは特別なケースであることに注意してください。その設定を使用する代わりに、次のように1を-execdir rm {} ';'
使用します-delete
。
find -iname '*.txt' -delete
これは、エラーを回避し、いくつかのセキュリティ問題を解決するために削除する必要があるファイルやディレクトリの順序など、考えられなかったいくつかの極端なケースに対処することができます。他のユースケースの場合...
結果を見つけるためのコマンドの実行を処理する最善の方法は、通常、コマンドにさまざまな-exec
/-ok
述部を使用することですfind
。特に1は、見つかったファイルのディレクトリ内で動作し、通常は他の述語よりも安全であるため、可能な限り1を使用する必要があります-execdir
(愚かな間違いが災害を防ぐという意味で)。
述語-exec
の後に実行するコマンドが続き、{}
見つかったファイルを含める必要がある場所を示し、各ファイルに対してコマンドを1回実行するか、一致するすべての引数のリストを置き換えて終了しますfind
。セミコロン終端は引用符で囲まれているため、シェルはそれを新しいコマンドを指す区切り文字として認識しません。の派生や以前のバージョンなどの一部のシェルでは、引用が必要になる場合があります。シェルに応じて、またはなどの代替引用符形式を使用できます。 Bourneやcshなどのシェルには慣用的です。';'
+
{}
rc
fish
{}
";"
\;
$';'
\;
すべてのテキストファイルを探しているとします。
find -iname '*.txt' -execdir rm {} ';'
以下はGNUマニュアルの関連セクションですfind
(man find
GNUシステムの場合):
-exec command ;
Execute command; true if 0 status is returned. All following
arguments to find are taken to be arguments to the command until
an argument consisting of ‘;’ is encountered. The string ‘{}’
is replaced by the current file name being processed everywhere
it occurs in the arguments to the command, not just in arguments
where it is alone, as in some versions of find. Both of these
constructions might need to be escaped (with a ‘\’) or quoted to
protect them from expansion by the shell. See the EXAMPLES sec-
tion for examples of the use of the -exec option. The specified
command is run once for each matched file. The command is exe-
cuted in the starting directory. There are unavoidable secu-
rity problems surrounding use of the -exec action; you should
use the -execdir option instead.
-exec command {} +
This variant of the -exec action runs the specified command on
the selected files, but the command line is built by appending
each selected file name at the end; the total number of invoca-
tions of the command will be much less than the number of
matched files. The command line is built in much the same way
that xargs builds its command lines. Only one instance of ‘{}’
is allowed within the command. The command is executed in the
starting directory.
-execdir command ;
-execdir command {} +
Like -exec, but the specified command is run from the subdirec-
tory containing the matched file, which is not normally the
directory in which you started find. This a much more secure
method for invoking commands, as it avoids race conditions dur-
ing resolution of the paths to the matched files. As with the
-exec action, the ‘+’ form of -execdir will build a command line
to process more than one matched file, but any given invocation
of command will only list files that exist in the same subdirec-
tory. If you use this option, you must ensure that your $PATH
environment variable does not reference ‘.’; otherwise, an
attacker can run any commands they like by leaving an appropri-
ately-named file in a directory in which you will run -execdir.
The same applies to having entries in $PATH which are empty or
which are not absolute directory names.
-iname
または同様に、-execdir
これは標準オプションではありませんが、多くのfind
実装でこれをサポートしています。サポートされている場合を意味します-depth
。GNUのマニュアルでは、次の使用時に明示的に追加することをfind
お勧めします。-depth
-delete
この事実を忘れないように。
答え2
別のアプローチは、出力をパイプし、その後のコマンドを使用して解析することです。唯一の安全な方法は、この-print0
オプションを使用することです。これはfind
、ヌル文字が結果の区切り文字として使用されることを示します。受信コマンドは、ヌルで区切られた入力を認識できる必要があります。例:
find /home/phunehehe -iregex '.*\.png$' -print0 | xargs -0 file
この-0
オプションは、xargs
入力がヌル区切りとして扱われるように指示します。
答え3
これだけを行う必要がある場合、Findには削除コマンドが組み込まれています。
find . -name "*.txt" -delete
上記のコマンドを使用すると、見つかったすべての.txtファイルが削除されます。
答え4
私はこの質問に対する答えを探していましたが、偶然このスレッドを見つけました。この回答により、実装方法に関するアイデアを得ることができました。mediainfo
すべてのJPEGファイルを検索したいとします。
mediainfo "
これは、一致する各ファイルの先頭と末尾に追加され、"
可能であれば特殊文字をエスケープするためにそれをスクリプトに入れてスクリプトを実行します。
find . -name *.jpg | sed -e 's/^/mediainfo "/g;' | sed -e 's/$/"/g;' > foo.sh && sh foo.sh
問題が心配な場合は、出力をファイルにリダイレクトするのをスキップし、スクリプトを実行する前に端末で結果を表示できます。