您的位置:首页 > 其它

find 命令使用图解(2) xargs 与exec 不同之处

2018-12-07 16:34 239 查看

xargs 与exec 不同之处

xargs 与-exec 图解 作者:LIU_BING_ONE

 

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]#

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: