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

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

猜你喜欢

转载自blog.csdn.net/LINU_BW/article/details/84877340