xargs 命令参数转发

$ whatis xargs
xargs (1)            - build and execute command lines from standard input

# -i is equivalent to -I{}
echo "https://github.com/abc/efg.git" | xargs -i git clone {}

Ref: