-Iオプションで実行コマンドの特定の文字を標準入力の値に置換できるので、それとshを組み合わせる
$ ls
a.txt b.txt
$ ls | xargs -I{} sh -c 'echo {}; echo {}'
a.txt
a.txt
b.txt
b.txt
-Iオプションは環境によっては--replaceであったりするのでmanで確認する。
Go to list of users who liked
More than 5 years have passed since last update.
-Iオプションで実行コマンドの特定の文字を標準入力の値に置換できるので、それとshを組み合わせる
$ ls
a.txt b.txt
$ ls | xargs -I{} sh -c 'echo {}; echo {}'
a.txt
a.txt
b.txt
b.txt
-Iオプションは環境によっては--replaceであったりするのでmanで確認する。
Register as a new user and use Qiita more conveniently
Go to list of users who liked