Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 379 Bytes

xargs命令.md

File metadata and controls

15 lines (10 loc) · 379 Bytes

xargs 命令

大多数命令都不接受标准输入作为参数,只能直接在命令行输入参数,这导致无法用管道命令传递参数。举例来说,echo命令就不接受管道传参。

$ echo "hello world" | echo

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

$ echo "hello world" | xargs echo
hello world