xargs 与exec 不同之处
xargs另一用法:可以把列变成指定行
[root@localhost scripts]# cat b.log
1
2
3
4
5
6
[root@localhost scripts]# xargs -n4 <b.log
1 2 3 4
5 6
[root@localhost scripts]#
xargs 与exec 不同之处
xargs另一用法:可以把列变成指定行
[root@localhost scripts]# cat b.log
1
2
3
4
5
6
[root@localhost scripts]# xargs -n4 <b.log
1 2 3 4
5 6
[root@localhost scripts]#
本文标题:find 命令使用图解xargs 与exec 不同之处
本文链接:https://www.haomeiwen.com/subject/cczqhqtx.html
网友评论