在Linux上使用xargs连接命令
-I 参数,指定占位符字符串
-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.
1 2 3 4 5 6 7 |
git config --global alias.pushall '!git remote | xargs -L1 -I R git push R '
ls -1 ./*jpg | xargs -L1 -I {} img2pdf {} -o {}.pdf
find books/ | grep -i python | xargs -I '{}' mv {} materials/material/language.python/
|