find
コマンドを使用して見つかった各ファイルに対して特定のコマンドをどのように実行しますか?質問のために、find
で見つかった各ファイルを単に削除したいとします。
編集:次の回答では一般的な使用例について説明していますが、ファイルとディレクトリの削除は特殊なケースであることに注意してください。 -execdir rm {} \;
構文を使用する代わりに、次のように-delete
を使用します。
find -iname '*.txt' -delete
これは、エラーが発生しないようにするために削除する必要のあるファイルとディレクトリの順序を含めることを考えていないEdgeのケースを扱います。その他の使用例について...
検索結果の実行中のコマンドを処理する最良の方法は、通常、find
コマンドにさまざまな-exec
オプションを使用することです。特に、[[SOMECODE] _]は、見つかったファイルのディレクトリ内で実行され、他のオプションよりも(愚かな間違いが悲惨になるのを防ぐという意味で)一般に安全であるため、可能な限り-execdir
を使用するようにしてください。
-exec
オプションの後には、実行したいコマンドが続きます。{}
は、findで見つかったファイルを含める必要がある場所を示し、\;
で終了してコマンドを1回実行します。各ファイルごとに、または+
を{}
をすべての一致の引数のリストに置き換えます。セミコロンターミネータはエスケープされているため、シェルでは新しいコマンドにつながる区切り文字として認識されません。
あなたがすべてのテキストファイルを見つけていたとしましょう:
find -iname '*.txt' -execdir rm {} \;
以下は、検索マニュアル(man find
)の関連ビットです。
-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.
別の方法は、出力をパイプして、後続のコマンドで解析することです。これを行う唯一の安全な方法は、-print0
オプション。結果の区切り文字としてnull文字を使用するようにfind
に指示します。受信コマンドには、ヌル区切りの入力を認識する機能が必要です。例:
find /home/phunehehe -iregex '.*\.png$' -print0 | xargs -0 file
-0
オプションは、入力をヌル区切りとして扱うようにxargs
に指示します。
Findには、削除コマンドが組み込まれています。
find . -name "*.txt" -delete
見つかった.txtファイルは、上記のコマンドを使用して削除されます。
私はこれに対する答えを探していたところ、このスレッドに出くわしました。答えは私にそれを達成する方法についての考えを与えました。すべてのJPEGファイルのmediainfo
を検索するとします。
これにより、一致したすべてのファイルの先頭にmediainfo "
が追加され、末尾に"
が追加されます(特殊文字をできるだけエスケープするため)、それをスクリプトに入れてスクリプトを実行します。
find . -name *.jpg | sed -e 's/^/mediainfo "/g;' | sed -e 's/$/"/g;' > foo.sh && sh foo.sh
何かがうまくいかないことが心配な場合は、出力をファイルにリダイレクトするのをスキップして、スクリプトを実行する前にターミナルで結果を確認することができます。
これは、xargs
コマンドを使用して実行できます。 xargs
は基本的に、標準入力の各命令に対してコマンドを1回実行します。したがって、たとえばディレクトリ内のすべての.jpg
ファイルを削除する必要がある場合、コマンドラインで簡単に行う方法は次のとおりです。
$ find ./ -name "*.jpg" | xargs rm
(Tabボタンの上にある)バックティックを使用してこれを行うこともできます(これは単一引用符文字ではなく、逆引用符文字であることに注意してください)。
$ rm `find ./ -name "*.jpg"`
xargs
とシェルが入力を処理する方法により、xargsメソッドは、関係するファイル名とディレクトリ名に空白や\"'
が含まれていない場合にのみ機能することに注意してください。バッククォートメソッドは、関係するファイル名とディレクトリ名に空白や\[?*
が含まれていない場合にのみ機能します。