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 参数指定每次将多少项,作为命令行参数。
参考 #
- 阮一峰 xargs 命令教程
叶王 © 2013-2024 版权所有。如果本文档对你有所帮助,可以请作者喝饮料。