您好,登錄后才能下訂單哦!
這篇文章主要介紹了xargs命令怎么用,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
xargs是給命令傳遞參數的一個過濾器,也是組合多個命令的一個工具。它把一個數據流分割為一些足夠小的塊,以方便過濾器和命令進行處理,下面為大家分享一下xargs命令使用方法。
語法:
xargs [OPTIONS] [COMMAND [initial-arguments]]
舉一個例子:我們用管道符傳輸到xargs,并為每個參數運行touch命令,-t表示在執(zhí)行之前先打印,創(chuàng)建三個文件:
[root@localhost ~]# echo "file1 file2 file3"|xargs -t touchtouch file1 file2 file3
如何限制參數的數量
默認情況下,傳遞給命令的參數數量由系統(tǒng)限制決定。-n選項指定要傳遞給命令的參數個數。xargs根據需要多次運行指定的命令,直到所有參數都用完為止。
下面例子指定每次傳遞一個參數:
[root@localhost ~]# echo "file1 file2 file3"|xargs -n1 -t touchtouch file1 touch file2 touch file3
要使用xargs運行多個命令,請使用-i或者-I選項。在-i或者-I后面自定義一個傳遞參數符號,所有匹配的項都會替換為傳遞給xargs的參數。
下面例子時xargs運行兩條命令,先touch創(chuàng)建文件,然后ls列出來:
[root@localhost ~]# echo "file1 file2 file3"|xargs -t -I % sh -c 'touch %;ls -l %'sh -c touch file1 file2 file3;ls -l file1 file2 file3 -rw-r--r--. 1 root root 0 Jan 30 00:18 file1 -rw-r--r--. 1 root root 0 Jan 30 00:18 file2 -rw-r--r--. 1 root root 0 Jan 30 00:18 file3
使用-d或者–delimiter選項設置自定義分隔符,可以是單個字符,也可以是以\ 開頭的轉義字符。
下面例子使用#做分隔符,echo命令使用了-n選項,意思是不輸出新行:
[root@localhost ~]# echo -n file1#file2#file3#file4|xargs -d \# -t touchtouch file1 file2 file3 file4
xargs命令還可以從文件讀取條目,而不是從標準輸入讀取條目。使用-a選項,后跟文件名。 創(chuàng)建一個ip.txt的文件,一會使用xargs命令ping里面的每一個地址:
[root@localhost ~]# cat ip.txt114.114.114.114 www.linuxprobe.com 202.102.128.68
使用-L 1選項,該選項表示xargs一次讀取一行。如果省略此選項,xargs將把所有ip傳遞給一個ping命令。
[root@localhost ~]# xargs -a ip.txt -t -L 1 ping -c 1ping -c 1 114.114.114.114 PING 114.114.114.114 (114.114.114.114) 56(84) bytes of data. 64 bytes from 114.114.114.114: icmp_seq=1 ttl=93 time=11.0 ms --- 114.114.114.114 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 11.026/11.026/11.026/0.000 ms ping -c 1 www.linuxprobe.com PING www.linuxprobe.com.w.kunlunno.com (221.15.65.202) 56(84) bytes of data. 64 bytes from hn.kd.jz.adsl (221.15.65.202): icmp_seq=1 ttl=48 time=20.9 ms --- www.linuxprobe.com.w.kunlunno.com ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 20.934/20.934/20.934/0.000 ms ping -c 1 202.102.128.68 PING 202.102.128.68 (202.102.128.68) 56(84) bytes of data. 64 bytes from 202.102.128.68: icmp_seq=1 ttl=83 time=8.71 ms --- 202.102.128.68 ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 8.710/8.710/8.710/0.000 ms
xargs通常與find命令結合使用。您可以使用find搜索特定文件,然后使用xargs對這些文件執(zhí)行操作。
若要避免包含換行符或其他特殊字符的文件名出現(xiàn)問題,請始終使用find的-print0選項,這樣可以使find打印完整的文件名,配合xargs命令使用-0或者–null選項可以正確的解釋。
下面例子中,查找log文件夾下面的類型為file的所有文件,打包壓縮起來:
[root@localhost ~]# find log/ -type f -print0|xargs --null tar -zcvf logs.tar.gzlog/anaconda/anaconda.loglog/anaconda/sysloglog/anaconda/program.loglog/anaconda/packaging.loglog/anaconda/storage.loglog/anaconda/ifcfg.loglog/anaconda/ks-script-TOLvJc.loglog/anaconda/ks-script-VRY9yQ.loglog/anaconda/ks-script-pjDijm.loglog/anaconda/journal.loglog/audit/audit.loglog/boot.loglog/boot.log-20200126log/btmplog/btmp-20200126 … [root@localhost ~]# lltotal 604 -rw-------. 1 root root 1285 Dec 21 17:19 anaconda-ks.cfg drwxr-xr-x. 8 root root 4096 Jan 29 23:02 log-rw-r--r--. 1 root root 607566 Jan 30 00:58 logs.tar.gz
感謝你能夠認真閱讀完這篇文章,希望小編分享的“xargs命令怎么用”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業(yè)資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。