系統(tǒng)之家 - 系統(tǒng)光盤下載網(wǎng)站!

當前位置:系統(tǒng)之家 > 系統(tǒng)教程 > Linux find命令與xargs組合使用

Linux find命令與xargs組合使用的方法

時間:2014-12-31 17:57:43 作者:qipeng 來源:系統(tǒng)之家 1. 掃描二維碼隨時看資訊 2. 請使用手機瀏覽器訪問: https://m.xitongzhijia.net/xtjc/20141231/33885.html 手機查看 評論

  find命令主要用于文件的查找,在之前的文章有過詳細的介紹(詳見系統(tǒng)之家Linux find命令常見用法匯總),今天小編要給大家介紹的是Linux find命令和xargs命令的配合使用,一起來了解下吧。

 Linux find命令與xargs組合使用的方法

  在使用find命令的-exec選項處理匹配到的文件時, find命令將所有匹配到的文件一起傳遞給exec執(zhí)行。但有些系統(tǒng)對能夠傳遞給exec的命令長度有限制,這樣在find命令運行幾分鐘之后,就會出現(xiàn)溢出錯誤

  錯誤信息通常是“參數(shù)列太長”或“參數(shù)列溢出”。這就是xargs命令的用處所在,特別是與find命令一起使用。

  find命令把匹配到的文件傳遞給xargs命令,而xargs命令每次只獲取一部分文件而不是全部,不像-exec選項那樣。這樣它可以先處理最先獲取的一部分文件,然后是下一批,并如此繼續(xù)下去。

  在有些系統(tǒng)中,使用-exec選項會為處理每一個匹配到的文件而發(fā)起一個相應(yīng)的進程,并非將匹配到的文件全部作為參數(shù)一次執(zhí)行;這樣在有些情況下就會出現(xiàn)進程過多,系統(tǒng)性能下降的問題,因而效率不高; 而使用xargs命令則只有一個進程。另外,在使用xargs命令時,究竟是一次獲取所有的參數(shù),還是分批取得參數(shù),以及每一次獲取參數(shù)的數(shù)目都會根據(jù)該命令的選項及系統(tǒng)內(nèi)核中相應(yīng)的可調(diào)參數(shù)來確定。

  使用實例:

  實例1: 查找系統(tǒng)中的每一個普通文件,然后使用xargs命令來測試它們分別屬于哪類文件

  命令:

  代碼如下:

  find 。 -type f -print | xargs file

  輸出:

  代碼如下:

 。踨oot@localhost test]# ll

  總計 312

  -rw-r--r-- 1 root root 302108 11-03 06:19 log2012.log

  -rw-r--r-- 1 root root 0 11-12 22:25 log2013.log

  -rw-r--r-- 1 root root 0 11-12 22:25 log2014.log

  drwxr-xr-x 6 root root 4096 10-27 01:58 scf

  drwxrwxrwx 2 root root 4096 11-12 19:32 test3

  drwxrwxrwx 2 root root 4096 11-12 19:32 test4

 。踨oot@localhost test]# find 。 -type f -print | xargs file

  。/log2014.log: empty

  。/log2013.log: empty

  。/log2012.log: ASCII text

 。踨oot@localhost test]#

  實例2:在整個系統(tǒng)中查找內(nèi)存信息轉(zhuǎn)儲文件(core dump) ,然后把結(jié)果保存到/tmp/core.log 文件中

  命令:

  代碼如下:

  find / -name “core” -print | xargs echo “” 》/tmp/core.log

  輸出:

  代碼如下:

 。踨oot@localhost test]# find / -name “core” -print | xargs echo “” 》/tmp/core.log

 。踨oot@localhost test]# cd /tmp

 。踨oot@localhost tmp]# ll

  總計 16

  -rw-r--r-- 1 root root 1524 11-12 22:29 core.log

  drwx------ 2 root root 4096 11-12 22:24 ssh-TzcZDx1766

  drwx------ 2 root root 4096 11-12 22:28 ssh-ykiRPk1815

  drwx------ 2 root root 4096 11-03 07:11 vmware-root

  實例3:在當前目錄下查找所有用戶具有讀、寫和執(zhí)行權(quán)限的文件,并收回相應(yīng)的寫權(quán)限

  命令:

  代碼如下:

  find 。 -perm -7 -print | xargs chmod o-w

  輸出:

  代碼如下:

  [root@localhost test]# ll

  總計 312

  -rw-r--r-- 1 root root 302108 11-03 06:19 log2012.log

  -rw-r--r-- 1 root root 0 11-12 22:25 log2013.log

  -rw-r--r-- 1 root root 0 11-12 22:25 log2014.log

  drwxr-xr-x 6 root root 4096 10-27 01:58 scf

  drwxrwxrwx 2 root root 4096 11-12 19:32 test3

  drwxrwxrwx 2 root root 4096 11-12 19:32 test4

 。踨oot@localhost test]# find 。 -perm -7 -print | xargs chmod o-w

  [root@localhost test]# ll

  總計 312

  -rw-r--r-- 1 root root 302108 11-03 06:19 log2012.log

  -rw-r--r-- 1 root root 0 11-12 22:25 log2013.log

  -rw-r--r-- 1 root root 0 11-12 22:25 log2014.log

  drwxr-xr-x 6 root root 4096 10-27 01:58 scf

  drwxrwxr-x 2 root root 4096 11-12 19:32 test3

  drwxrwxr-x 2 root root 4096 11-12 19:32 test4

 。踨oot@localhost test]#

  說明:

  執(zhí)行命令后,文件夾scf、test3和test4的權(quán)限都發(fā)生改變

  實例4:用grep命令在所有的普通文件中搜索hostname這個詞

  命令:

  代碼如下:

  find 。 -type f -print | xargs grep “hostname”

  輸出:

  代碼如下:

 。踨oot@localhost test]# find 。 -type f -print | xargs grep “hostname”

  。/log2013.log:hostnamebaidu=baidu.com

  。/log2013.log:hostnamesina=sina.com

  。/log2013.log:hostnames=true[root@localhost test]#

  實例5:用grep命令在當前目錄下的所有普通文件中搜索hostnames這個詞

  命令:

  代碼如下:

  find 。 -name \* -type f -print | xargs grep “hostnames”

  輸出:

  代碼如下:

 。踨oot@peida test]# find 。 -name \* -type f -print | xargs grep “hostnames”

  。/log2013.log:hostnamesina=sina.com

  。/log2013.log:hostnames=true[root@localhost test]#

  說明:

  注意,在上面的例子中, \用來取消find命令中的*在shell中的特殊含義。

  實例6:使用xargs執(zhí)行mv

  命令:

  代碼如下:

  find 。 -name “*.log” | xargs -i mv {} test4

  輸出:

  代碼如下:

 。踨oot@localhost test]# ll

  總計 316

  -rw-r--r-- 1 root root 302108 11-03 06:19 log2012.log

  -rw-r--r-- 1 root root 61 11-12 22:44 log2013.log

  -rw-r--r-- 1 root root 0 11-12 22:25 log2014.log

  drwxr-xr-x 6 root root 4096 10-27 01:58 scf

  drwxrwxr-x 2 root root 4096 11-12 22:54 test3

  drwxrwxr-x 2 root root 4096 11-12 19:32 test4

 。踨oot@localhost test]# cd test4/

 。踨oot@localhost test4]# ll

  總計 0[root@localhost test4]# cd 。。

 。踨oot@localhost test]# find 。 -name “*.log” | xargs -i mv {} test4

 。踨oot@localhost test]# ll

  總計 12drwxr-xr-x 6 root root 4096 10-27 01:58 scf

  drwxrwxr-x 2 root root 4096 11-13 05:50 test3

  drwxrwxr-x 2 root root 4096 11-13 05:50 test4

 。踨oot@localhost test]# cd test4/

 。踨oot@localhost test4]# ll

  總計 304

  -rw-r--r-- 1 root root 302108 11-12 22:54 log2012.log

  -rw-r--r-- 1 root root 61 11-12 22:54 log2013.log

  -rw-r--r-- 1 root root 0 11-12 22:54 log2014.log

 。踨oot@localhost test4]#

  實例7:find后執(zhí)行xargs提示xargs: argument line too long解決方法:

  命令:

  代碼如下:

  find 。 -type f -atime +0 -print0 | xargs -0 -l1 -t rm -f

  輸出:

  代碼如下:

 。踨oot@pd test4]# find 。 -type f -atime +0 -print0 | xargs -0 -l1 -t rm -f

  rm -f

 。踨oot@pdtest4]#

  說明:

  -l1是一次處理一個;-t是處理之前打印出命令

  實例8:使用-i參數(shù)默認的前面輸出用{}代替,-I參數(shù)可以指定其他代替字符,如例子中的[]

  命令:

  輸出:

  代碼如下:

 。踨oot@localhost test]# ll

  總計 12drwxr-xr-x 6 root root 4096 10-27 01:58 scf

  drwxrwxr-x 2 root root 4096 11-13 05:50 test3

  drwxrwxr-x 2 root root 4096 11-13 05:50 test4

 。踨oot@localhost test]# cd test4

 。踨oot@localhost test4]# find 。 -name “file” | xargs -I [] cp [] 。。

 。踨oot@localhost test4]# ll

  總計 304

  -rw-r--r-- 1 root root 302108 11-12 22:54 log2012.log

  -rw-r--r-- 1 root root 61 11-12 22:54 log2013.log

  -rw-r--r-- 1 root root 0 11-12 22:54 log2014.log

 。踨oot@localhost test4]# cd 。。

  [root@localhost test]# ll

  總計 316

  -rw-r--r-- 1 root root 302108 11-13 06:03 log2012.log

  -rw-r--r-- 1 root root 61 11-13 06:03 log2013.log

  -rw-r--r-- 1 root root 0 11-13 06:03 log2014.log

  drwxr-xr-x 6 root root 4096 10-27 01:58 scf

  drwxrwxr-x 2 root root 4096 11-13 05:50 test3

  drwxrwxr-x 2 root root 4096 11-13 05:50 test4

 。踨oot@localhost test]#

  說明:

  使用-i參數(shù)默認的前面輸出用{}代替,-I參數(shù)可以指定其他代替字符,如例子中的[]

  實例9:xargs的-p參數(shù)的使用

  命令:

  代碼如下:

  find 。 -name “*.log” | xargs -p -i mv {} 。。

  輸出:

  代碼如下:

 。踨oot@localhost test3]# ll

  總計 0

  -rw-r--r-- 1 root root 0 11-13 06:06 log2015.log

  [root@localhost test3]# cd 。。

 。踨oot@localhost test]# ll

  總計 316

  -rw-r--r-- 1 root root 302108 11-13 06:03 log2012.log

  -rw-r--r-- 1 root root 61 11-13 06:03 log2013.log

  -rw-r--r-- 1 root root 0 11-13 06:03 log2014.log

  drwxr-xr-x 6 root root 4096 10-27 01:58 scf

  drwxrwxr-x 2 root root 4096 11-13 06:06 test3

  drwxrwxr-x 2 root root 4096 11-13 05:50 test4

 。踨oot@localhost test]# cd test3

  [root@localhost test3]# find 。 -name “*.log” | xargs -p -i mv {} 。。

  mv 。/log2015.log 。。 ?。。.y

 。踨oot@localhost test3]# ll

  總計 0[root@localhost test3]# cd 。。

  [root@localhost test]# ll

  總計 316

  -rw-r--r-- 1 root root 302108 11-13 06:03 log2012.log

  -rw-r--r-- 1 root root 61 11-13 06:03 log2013.log

  -rw-r--r-- 1 root root 0 11-13 06:03 log2014.log

  -rw-r--r-- 1 root root 0 11-13 06:06 log2015.log

  drwxr-xr-x 6 root root 4096 10-27 01:58 scf

  drwxrwxr-x 2 root root 4096 11-13 06:08 test3

  drwxrwxr-x 2 root root 4096 11-13 05:50 test4

 。踨oot@localhost test]#

  說明:

  -p參數(shù)會提示讓你確認是否執(zhí)行后面的命令,y執(zhí)行,n不執(zhí)行。

  上面就是Linux find命令和xargs命令組合使用的方法介紹了,find命令通過和xargs命令的配合使用,能夠解決很多實際問題,如果你在單獨使用find命令的時候無法滿足你的需求,可嘗試與其他命令配合使用。

發(fā)表評論

0

沒有更多評論了

評論就這些咯,讓大家也知道你的獨特見解

立即評論

以上留言僅代表用戶個人觀點,不代表系統(tǒng)之家立場

其他版本軟件

熱門教程

人氣教程排行

Linux系統(tǒng)推薦

官方交流群 軟件收錄