shell stdin 变 参数
程序员文章站
2022-05-09 17:01:15
...
有时候我们想让一个标准输入流变成下一个脚本的参数,就可以使用
xargs
echo ok | xargs sh ok.sh
这个时候 ok.sh 的参数就是 ok
同理,find 也是一样
find / -type f -print | xargs grep "device"
上一篇: Linux 下获取进程PID