Linux xargs

產生命令的參數。常和find 在一塊兒連用。bash

1. echo 'one two three' | xargs mkdirui

 

2. find /tmp -mtime +14 | xargs rmurl

 

3. time find . -type f -name "*.txt" -exec rm {} \; 0.35s user 0.11s system 99% cpu 0.467 totalspa

time find ./foo -type f -name "*.txt" | xargs rm 0.00s user 0.01s system 75% cpu 0.016 totalcode

4. echo 'one two three' | xargs -t rmthree

5. echo 'one two three' | xargs -p touch圖片

6. cat foo.txt | xargs -I % sh -c 'echo %; mkdir %'字符串

 

讀取stdin,將格式化後的參數傳遞給命令

假設一個命令爲 xgj.sh 和一個保存參數的文件args.txt:get

args.txt已經具有執行權限string

[root@entel2 test]# cat xgj.sh #!/bin/bash #打印全部的參數 echo $* [root@entel2 test]# cat args.txt aaa bbb ccc
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

xargs的一個選項-I,

使用-I指定一個替換字符串{},

這個字符串在xargs擴展時會被替換掉,當-I與xargs結合使用,每個參數命令都會被執行一次:

[root@entel2 test]# cat args.txt | xargs -I {} ./xgj.sh XXX {} YYY XXX aaa YYY XXX bbb YYY XXX ccc YYY
  • 1
  • 2
  • 3
  • 4

複製全部圖片文件到 /data/images 目錄下:

 ls *.jpg | xargs -n1 -I cp {} /data/images 
  • 1

xargs結合find使用

用rm 刪除太多的文件時候,可能獲得一個錯誤信息: 
/bin/rm Argument list too long.

用xargs去避免這個問題:

 find . -type f -name "*.log" -print0 | xargs -0 rm -f 
  • 1

xargs -0將\0做爲定界符。

-0 這個參數能夠將\,空格等字符還原成通常字符。

統計一個源代碼目錄中全部py文件的行數:

find . -type f -name "*.py" -print0 | xargs -0 wc -l 
  • 1

查找全部的jpg 文件,而且壓縮它們:

 find . -type f -name "*.jpg" -print | xargs tar -czvf images.tar.gz 
  • 1

xargs其餘應用

假如你有一個文件包含了不少你但願下載的URL,你可以使用xargs下載全部連接:

 cat url-list.txt | xargs wget -c 
相關文章
相關標籤/搜索