1. 程式人生 > >find 命令使用圖解(2) xargs 與exec 不同之處

find 命令使用圖解(2) xargs 與exec 不同之處

xargs 與exec 不同之處

xargs 與-exec 圖解 作者:LIU_BING_ONE

 

xargs另一用法:可以把列變成指定行

[[email protected] scripts]# cat b.log

1

2

3

4

5

6

[[email protected] scripts]# xargs -n4 <b.log

1 2 3 4

5 6

[[email protected] scripts]#