markdown xargs的

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown xargs的相关的知识,希望对你有一定的参考价值。

## Generate multiple commands by only appending limited number of arguments
echo a b c | xargs -n1 rm

    rm a
    rm b
    rm c
    
   
## Append all arguments 
echo a b c | xargs rm

    rm a b c
    
    
## test
echo a b c | xargs -I% -n1 echo test/%

    echo test/a
    echo test/b
    echo test/c

以上是关于markdown xargs的的主要内容,如果未能解决你的问题,请参考以下文章