xargs

xargs #

xargs 命令的作用,是将标准输入转为命令行参数

-L #

xargs -L 1
xargs --max-lines=1 # synonym for the -L option

-L 参数指定多少行作为一个命令行参数。

执行子目录里所有的 deploy.sh find . -name deploy.sh | xargs -L 1 sh

-n #

-L 参数虽然解决了多行的问题,但是有时用户会在同一行输入多项。 -n 参数指定每次将多少项,作为命令行参数。

参考 #


本文访问量

本站总访问量

本站总访客数