比较奇怪的是,GNU xargs的manpage写的是:
This manual page documents the GNU version of xargs. xargs reads items from the standard input, delimited by blanks (which can be protected with double or single quotes or a backslash) or newlines
按说应该支持空格啊
【 在 JulyClyde 的大作中提到: 】
: 例子:
: list="a b c d e"; echo $list |xargs -n1 -I{} echo begin {} end
: 在Mac上执行结果:
: ...................
--
FROM 222.71.112.*