Linuxでファイルのみを移動したかったのですが、次のように答えが見つかりました ここ :
find . -maxdepth 1 -type f -exec mv {} destination_path \;
それは私にとって完璧に機能しました。 しかし、私の質問は:
このコマンドでの\;
の意味は何ですか?
このコマンドの中括弧{}
は*
と同等ですか?
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.