最良の方法についてはStephaneの回答をご覧ください。より明白なソリューションを使用しない理由(および最も効率的ではない理由)については私の回答をご覧ください。
次の-I
オプションを使用できますxargs
。
find /tmp/ -ctime -1 -name "x*" | xargs -I '{}' mv '{}' ~/play/
これに似た仕組みで動作find
して{}
。また、-name
引数を引用します(x
現在のディレクトリで始まるファイルはファイル化され、findの引数として渡されるため、予期した動作が得られません!)。
ただし、manatworkで指摘されているように、xargs
manページに詳細があります。
-I replace-str
Replace occurrences of replace-str in the initial-arguments with
names read from standard input. Also, unquoted blanks do not
terminate input items; instead the separator is the newline
character. Implies -x and -L 1.
注意すべき重要なことは、-L 1
一度に1 行の出力のみfind
が処理されることを意味します。これは、構文的には次と同じことを意味します。
find /tmp/ -ctime -1 -name "x*" -exec mv '{}' ~/play/
(ファイルごとに 1つのmv
操作を実行します)。
GNU -0
xargs引数を使用しても、find -print0
引数はまったく同じ動作を引き起こします-I
-これはclone()
各ファイルのプロセスになりますmv
:
find . -name "x*" -print0 | strace xargs -0 -I '{}' mv '{}' /tmp/other
.
.
read(0, "./foobar1/xorgslsala11\0./foobar1"..., 4096) = 870
mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fbb82fad000
open("/usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=26066, ...}) = 0
mmap(NULL, 26066, PROT_READ, MAP_SHARED, 3, 0) = 0x7fbb82fa6000
close(3) = 0
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7fbb835af9d0) = 661
wait4(-1, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 661
--- SIGCHLD (Child exited) @ 0 (0) ---
clone(child_stack=0, flags=CLONE_CHILD_CLEARTID|CLONE_CHILD_SETTID|SIGCHLD, child_tidptr=0x7fbb835af9d0) = 662
wait4(-1, [{WIFEXITED(s) && WEXITSTATUS(s) == 0}], 0, NULL) = 662
--- SIGCHLD (Child exited) @ 0 (0) ---
.
.
.
-I
:find . | xargs -I'{}' mv '{}' ~/play/
で使用できますが、男が言うように、「Implies-x
and-L 1
。」シンプルに保ち、使いfind . -exec mv '{}' ~/play/ \;