我常用的find命令

無聲勝有聲發表於2015-05-15

查詢某種型別檔案中包含特定字元的檔案

find /* -type f -name “*.php” |xargs grep “rename(

find ./|xargs grep -ri “is_vip” -l

 

Linux下find一次查詢多個指定檔案或者排除某類檔案,在 GREP 中匹配多個關鍵字的方法
(1)Linux下find一次查詢多個指定檔案:
查詢a.html和b.html

find . -name "a.html" -name "b.html"
find . -regex `.*.txt|.*.doc|.*.mp3`
find . -regex `.*.txt|.*.doc|.*.mp3` 

./a.txt 

./a.doc
./a.mp3

 

(2)排除某些檔案型別:
排除目錄下所有以html結尾的檔案:

find . -type f ! -name "*.html"

./ge.bak.02.09 

./ge.html.changed.by.jack
./a.txt
./a.doc
./a.mp3

 

(3)排除多種檔案型別的示例:

find . -type f ! -name "*.html" -type f ! -name "*.php" -type f ! -name "*.svn-base" -type f ! -name "*.js" -type f ! -name "*.gif" -type f ! -name "*.png" -type f ! -name "*.cpp" -type f ! -name "*.h" -type f ! -name "*.o" -type f ! -name "*.jpg" -type f ! -name "*.so" -type f ! -name "*.bak" -type f ! -name "*.log"

(3)在 GREP 中匹配多個關鍵字的方法:

grep查詢多個數字的檔案:
-r 遞迴,-E:正則 -l:只顯示檔名

grep -r -E `0341028|100081|10086|10001` * 

a.txt:100081 

b.txt:10086
c/cc.txt:0341028
c/cc.txt:100081
c/cc.txt:10086
c/cc.txt:10001
c.txt:10001
d.txt:0341028

 

grep -r -E -l `0341028|100081|10086|10001` * 

a.txt 

b.txt
c/cc.txt
c.txt
d.txt

 

多種型別檔案示例:

find . -name "*.html" -o -name "*.js"|xargs grep -r "BusiTree"

(4)查詢系統大於100M的檔案

find / -type f -size +1000000k 

 


相關文章