web-dev-qa-db-ja.com

Linuxのfind-commandのいくつかのフラグを理解する

Linuxでファイルのみを移動したかったのですが、次のように答えが見つかりました ここ

find . -maxdepth 1 -type f -exec mv {} destination_path \;

それは私にとって完璧に機能しました。 しかし、私の質問は

  1. このコマンドでの\;の意味は何ですか?

  2. このコマンドの中括弧{}*と同等ですか?

5
user2804070

findコマンドは、-execオプションと;文字の間のすべてが、各検索結果で実行するコマンドを構成していることを前提としています。

;bashシェルの予約文字であるため、\を使用してエスケープする必要があります。そうしないと、bashがそれを解釈します。詳細については、man bashを参照してください。

中括弧{}は、findの各検索結果のプレースホルダーです。

以下はfindのmanページからのものです。

-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. 
9
NZD