1. 查找全部".h"文件shell
find /PATH -name "*.h"svn
2. 查找全部".h"文件中的含有"helloworld"字符串的文件ui
find /PATH -name "*.h" -exec grep -in "helloworld" {} \;字符串
find /PATH -name "*.h" | xargs grep -in "helloworld"io
3. 查找全部".h"和".c"文件中的含有"helloworld"字符串的文件function
find /PATH /( -name "*.h" -or -name "*.c" /) -exec grep -in "helloworld" {} \;awk
4. 查找非備份文件中的含有"helloworld"字符串的文件file
find /PATH /( -not -name "*~" /) -exec grep -in "helloworld" {} \;搜索
注:/PATH爲查找路徑,默認爲當前路徑。帶-exec參數時必須以\;結尾,不然會提示「find: 遺漏「-exec」的參數」。
權限
1. find pathname -options [-print -exec -ok]
-optinos
1)-name:按照文件名查找
find ~ -name 「*.txt」 -print
find ~ -name 「[a-z][0-9].txt」 -print
2)-perm:按照權限查找文件
find ~ -perm 755 -print 查找權限爲755的文件
find ~ -perm 007 -print 查找o位置上具備7權限的文件
find ~ -perm 4000 -print 查找具備suid的文件
3)-prune
不在當前目錄下查找
4)-user和-nouser
find ~ -user zhao -print 查找文件屬主是zhao的文件
find ~ -nouser -print 查找文件屬主已經被刪除的文件
5)-group和-nogroup
find ~ -group zhao -print 查找文件羣組是zhao的文件
6)按照時間
find ~ -mtime -5 -print 文件更改時間在5天內的文件
find ~ -mtime +3 -print 文件更改時間在3天前的文件
find ~ -newer file1 -print 查找比文件file1新的文件
7)按照類型查找
find ~ -type d -print 查找全部目錄
8)按照大小
find ~ -size +1000000C -print 查找文件大小大於1000000字節(1M)的文件
9)查找位於本文件系統裏面的文件
find / -name 「*.txt」 -mount -print
-exec,-ok:find命令對於匹配文件執行該參數所給出shell命令,相應命令形式爲: ‘command’ {} \;
-ok 在執行命令前要確認
find ~ -type f -exec ls -l {} \;
find / -name 「*.log」 -mtime +5 -ok rm {} \;
find . -name core -exec rm {} \;
使用-x dev參數
防止find搜索其餘分區
find . -size 0 -exec rm {} \;
刪除尺寸爲0的文件
2. xargs與-exec功能相似
find ~ -type f | xargs ls -l
find / -name 「*.log」 -type f -print| xargs grep -i DB0
find . -type f |xargs grep -i 「Mary」
在全部文件中檢索字符串Mary
ls *~ |xargs rm -rf
刪除全部以~結尾的文件
4、grep多個過濾條件
一、或操做
grep -E '123|abc' filename // 找出文件(filename)中包含123或者包含abc的行
egrep '123|abc' filename // 用egrep一樣能夠實現
awk '/123|abc/' filename // awk 的實現方式
二、與操做
grep pattern1 files | grep pattern2 :顯示既匹配 pattern1 又匹配 pattern2 的行。
三、其餘操做
grep -i pattern files :不區分大小寫地搜索。默認狀況區分大小寫,
grep -l pattern files :只列出匹配的文件名,
grep -L pattern files :列出不匹配的文件名,
grep -w pattern files :只匹配整個單詞,而不是字符串的一部分(如匹配‘magic’,而不是‘magical’),
grep -C number pattern files :匹配的上下文分別顯示[number]行,
find -type f ! -path '*/.svn/*'