1 xargs -l2 xargs -i3 xargs -P N 1 xargs -l 按列显示 cat url.txt | xargs -lcat url.txt | xargs -l wget -bc 2 xargs -i 用{}占位,可多次引用 ls *.txt | xargs -i cp {} {}.bak 3 xargs -P N xargs默认为单进程 可设置-P/—max-procs来并行执行 ls *sh | xargs -P 4 -l sh https://www.runoob.com/linux/linux-comm-xargs.htmlhttp://www.ruanyifeng.com/blog/2019/08/xargs-tutorial.html