[AD] -- 内容广告 -- [AD]
xargs [option]
cat example.txt xargs
多行输入单行输出
cat example.txt xargs -n3
多行输入多行输出
echo “test/test/test” | xargs -d/ test test test
自定义分隔符
find -mtime -7 xargs -I {} cp {} ~/test
自定义替换符号(把七天内修改的文件复制到 ~/test 里)
[AD] -- 文末广告 -- [AD]