【轉】linux下find尋找命令用法

來源:互聯網
上載者:User

標籤:blog   http   io   ar   os   使用   sp   檔案   資料   

 

原文連結 http://www.jb51.net/os/RedHat/1307.html

Linux下find命令在目錄結構中搜尋檔案,並執行指定的操作。Linux下find命令提供了相當多的尋找條件,功能很強大。由於find具有強大的功能,所以它的選項也很多,其中大部分選項都值得我們花時間來瞭解一下。即使系統中含有網路檔案系統( NFS),find命令在該檔案系統中同樣有效,只你具有相應的許可權。 在運行一個非常消耗資源的find命令時,很多人都傾向於把它放在後台執行,因為遍曆一個大的檔案系統可能會花費很長的時間(這裡是指30G位元組以上的檔案系統)。1.命令格式:find pathname -options [-print -exec -ok ...]2.命令功能:用於在檔案樹種尋找檔案,並作出相應的處理3.命令參數:pathname: find命令所尋找的目錄路徑。例如用.來表示目前的目錄,用/來表示系統根目錄。 -print: find命令將匹配的檔案輸出到標準輸出。 -exec: find命令對匹配的檔案執行該參數所給出的shell命令。相應命令的形式為‘command‘ {  } \;,注意{   }和\;之間的空格。 -ok: 和-exec的作用相同,只不過以一種更為安全的模式來執行該參數所給出的shell命令,在執行每一個命令之前,都會給出提示,讓使用者來確定是否執行。4.命令選項:-name   按照檔案名稱尋找檔案。-perm   按照檔案許可權來尋找檔案。-prune  使用這一選項可以使find命令不在當前指定的目錄中尋找,如果同時使用-depth選項,那麼-prune將被find命令忽略。-user   按照檔案屬主來尋找檔案。-group  按照檔案所屬的組來尋找檔案。-mtime -n +n  按照檔案的更改時間來尋找檔案, - n表示檔案更改時間距現在n天以內,+ n表示檔案更改時間距現在n天以前。find命令還有-atime和-ctime 選項,但它們都和-m time選項。-nogroup  尋找無有效所屬組的檔案,即該檔案所屬的組在/etc/groups中不存在。-nouser   尋找無有效屬主的檔案,即該檔案的屬主在/etc/passwd中不存在。-newer file1 ! file2  尋找更改時間比檔案file1新但比檔案file2舊的檔案。-type  尋找某一類型的檔案,諸如:b - 塊裝置檔案。d - 目錄。c - 字元裝置檔案。p - 管道檔案。l - 符號連結檔案。f - 普通檔案。-size n:[c] 尋找檔案長度為n塊的檔案,帶有c時表示檔案長度以位元組計。-depth:在尋找檔案時,首先尋找目前的目錄中的檔案,然後再在其子目錄中尋找。-fstype:尋找位於某一類型檔案系統中的檔案,這些檔案系統類型通常可以在設定檔/etc/fstab中找到,該設定檔中包含了本系統中有關檔案系統的資訊。-mount:在尋找檔案時不跨越檔案系統mount點。-follow:如果find命令遇到符號連結檔案,就跟蹤至連結所指向的檔案。-cpio:對匹配的檔案使用cpio命令,將這些檔案備份到磁帶裝置中。另外,下面三個的區別:-amin n   尋找系統中最後N分鐘訪問的檔案-atime n  尋找系統中最後n*24小時訪問的檔案-cmin n   尋找系統中最後N分鐘被改變檔案狀態的檔案-ctime n  尋找系統中最後n*24小時被改變檔案狀態的檔案-mmin n   尋找系統中最後N分鐘被改變檔案資料的檔案-mtime n  尋找系統中最後n*24小時被改變檔案資料的檔案5.使用執行個體:執行個體1:尋找指定時間內修改過的檔案命令:           find -atime -2輸出:複製代碼代碼如下:[[email protected] ~]# find -atime -2../logs/monitor./.bashrc./.bash_profile./.bash_history說明:超找48小時內修改過的檔案執行個體2:根據關鍵字尋找命令:find . -name "*.log"輸出:複製代碼代碼如下:[[email protected] test]# find . -name "*.log" ./log_link.log./log2014.log./test4/log3-2.log./test4/log3-3.log./test4/log3-1.log./log2013.log./log2012.log./log.log./test5/log5-2.log./test5/log5-3.log./test5/log.log./test5/log5-1.log./test5/test3/log3-2.log./test5/test3/log3-3.log./test5/test3/log3-1.log./test3/log3-2.log./test3/log3-3.log./test3/log3-1.log說明:在目前的目錄尋找 以.log結尾的檔案。 ". "代表目前的目錄執行個體3:按照目錄或檔案的許可權來尋找檔案命令:find /opt/soft/test/ -perm 777輸出:複製代碼代碼如下:[[email protected] test]# find /opt/soft/test/ -perm 777/opt/soft/test/log_link.log/opt/soft/test/test4/opt/soft/test/test5/test3/opt/soft/test/test3說明:尋找/opt/soft/test/目錄下 許可權為 777的檔案執行個體4:按類型尋找命令:find . -type f -name "*.log"輸出:複製代碼代碼如下:[[email protected] test]# find . -type f -name "*.log"./log2014.log./test4/log3-2.log./test4/log3-3.log./test4/log3-1.log./log2013.log./log2012.log./log.log./test5/log5-2.log./test5/log5-3.log./test5/log.log./test5/log5-1.log./test5/test3/log3-2.log./test5/test3/log3-3.log./test5/test3/log3-1.log./test3/log3-2.log./test3/log3-3.log./test3/log3-1.log[[email protected] test]#說明:尋找當目錄,以.log結尾的普通檔案執行個體5:尋找當前所有目錄並排序命令:find . -type d | sort輸出:複製代碼代碼如下:[[email protected] test]# find . -type d | sort../scf./scf/bin./scf/doc./scf/lib./scf/service./scf/service/deploy./scf/service/deploy/info./scf/service/deploy/product./test3./test4./test5./test5/test3[[email protected] test]#執行個體6:按大小尋找檔案命令:find . -size +1000c -print輸出:複製代碼代碼如下:[[email protected] test]# find . -size +1000c -print../test4./scf./scf/lib./scf/service./scf/service/deploy./scf/service/deploy/product./scf/service/deploy/info./scf/doc./scf/bin./log2012.log./test5./test5/test3./test3[[email protected] test]#說明:尋找目前的目錄大於1K的檔案一、Linux中find常見用法樣本·find    path    -option    [    -print ]    [ -exec    -ok    command ]    {} \;#-print 將尋找到的檔案輸出到標準輸出#-exec    command    {} \;       -----將查到的檔案執行command操作,{} 和 \;之間有空格#-ok 和-exec相同,只不過在操作前要詢使用者 ==================================================== -name    filename               #尋找名為filename的檔案-perm                         #按執行許可權來尋找-user     username              #按檔案屬主來尋找-group groupname              #按組來尋找-mtime    -n +n                 #按檔案更改時間來尋找檔案,-n指n天以內,+n指n天以前-atime     -n +n                #按檔案訪問時間來查GIN: 0px">-perm                          #按執行許可權來尋找-user     username              #按檔案屬主來尋找-group groupname              #按組來尋找-mtime    -n +n                 #按檔案更改時間來尋找檔案,-n指n天以內,+n指n天以前-atime     -n +n                #按檔案訪問時間來尋找檔案,-n指n天以內,+n指n天以前 -ctime     -n +n                #按檔案建立時間來尋找檔案,-n指n天以內,+n指n天以前 -nogroup                      #查無有效屬組的檔案,即檔案的屬組在/etc/groups中不存在-nouser                       #查無有效屬主的檔案,即檔案的屬主在/etc/passwd中不存-newer    f1 !f2                找檔案,-n指n天以內,+n指n天以前 -ctime     -n +n                #按檔案建立時間來尋找檔案,-n指n天以內,+n指n天以前 -nogroup                      #查無有效屬組的檔案,即檔案的屬組在/etc/groups中不存在-nouser                       #查無有效屬主的檔案,即檔案的屬主在/etc/passwd中不存-newer    f1 !f2                #查更改時間比f1新但比f2舊的檔案-type      b/d/c/p/l/f          #查是塊裝置、目錄、字元裝置、管道、符號連結、普通檔案-size       n[c]                #查長度為n塊[或n位元組]的檔案-depth                        #使尋找在進入子目錄前先行尋找完本目錄-fstype                       #查更改時間比f1新但比f2舊的檔案-mount                        #查檔案時不跨越檔案系統mount點-follow                       #如果遇到符號連結檔案,就跟蹤連結所指的檔案-cpio                         #對匹配的檔案使用cpio命令,將他們備份到磁帶裝置中-prune                        #忽略某個目錄 ====================================================$find    ~    -name    "*.txt"    -print      #在$HOME中查.txt檔案並顯示$find    .     -name    "*.txt"    -print$find    .     -name    "[A-Z]*"    -pri26nbsp;     #對匹配的檔案使用cpio命令,將他們備份到磁帶裝置中-prune                                #忽略某個目錄 $find    .     -name    "[A-Z]*"    -print    #查以大寫字母開頭的檔案$find    /etc    -name    "host*"    -print #查以host開頭的檔案$find    .    -name    "[a-z][a-z][0--9][0--9].txt"     -print    #查以兩個小寫字母和兩個數字開頭的txt檔案$find .    -perm    755    -print$find    .    -perm -007    -exec ls -l {} \;    #查所有使用者都可讀寫執行的檔案同-perm 777$find    . -type d    -print   列印目錄結構$find    .   !    -type    d    -print  列印非目錄檔案 find /usr/include -name ‘*.h‘ -exec grep AF_INEF6 {} \; 因grep無法遞迴搜尋子目錄,故可以和find相結合使用。 在/usr/include 所有子目錄中的.h檔案中找字串AF_INEF6$find    .    -type l    -print $find    .    -size    +1000000c    -print         #查長度大於1Mb的檔案$find    .    -size    100c          -print        # 查長度為100c的檔案$find    .    -size    +10    -print               #查長度超到期作廢10塊的檔案(1塊=512位元組) $cd /$find    etc    home    apps     -depth    -print    | cpio    -ivcdC65536    -o    /dev/rmt0$find    /etc -name "passwd*"    -exec grep    "cnscn"    {}    \;    #看是否存在cnscn使用者$find . -name "yao*"    | xargs file$find    . -name "yao*"    |    xargs    echo     "" > /tmp/core.log$find    . -name "yao*"    | xargs    chmod    o-w ====================================================== find    -name april*                        在目前的目錄下尋找以april開始的檔案find    -name    april*    fprint file          在目前的目錄下尋找以april開始的檔案,並把結果輸出到file中find    -name ap* -o -name may*    尋找以ap或may開頭的檔案find    /mnt    -name tom.txt    -ftype vfat    在/mnt下尋找名稱為tom.txt且檔案系統類型為vfat的檔案find    /mnt    -name t.txt ! -ftype vfat     在/mnt下尋找名稱為tom.txt且檔案系統類型不為vfat的檔案find    /tmp    -name wa* -type l             在/tmp下尋找名為wa開頭且類型為符號連結的檔案find    /home    -mtime    -2                   在/home下查最近兩天內改動過的檔案find /home     -atime -1                    查1天之內被存取過的檔案find /home -mmin     +60                    在/home下查60分鐘前改動過的檔案find /home    -amin    +30                    查最近30分鐘前被存取過的檔案find /home    -newer    tmp.txt               在/home下查更新時間比tmp.txt近的檔案或目錄find /home    -anewer    tmp.txt              在/home下查存取時間比tmp.txt近的檔案或目錄find    /home    -used    -2                    列出檔案或目錄被改動過之後,在2日內被存取過的檔案或目錄find    /home    -user cnscn                  列出/home目錄內屬於使用者cnscn的檔案或目錄find    /home    -uid    +501                   列出/home目錄內使用者的識別碼大於501的檔案或目錄find    /home    -group    cnscn                列出/home內組為cnscn的檔案或目錄find    /home    -gid 501                     列出/home內組id為501的檔案或目錄find    /home    -nouser                      列出/home內不屬於本機使用者的檔案或目錄find    /home    -nogroup                     列出/home內不屬於本機群組的檔案或目錄find    /home     -name tmp.txt     -maxdepth    4    列出/home內的tmp.txt 查時深度最多為3層find    /home    -name tmp.txt    -mindepth    3    從第2層開始查find    /home    -empty                       尋找大小為0的檔案或空目錄find    /home    -size    +512k                 查大於512k的檔案find    /home    -size    -512k                 查小於512k的檔案find    /home    -links    +2                   查硬串連數大於2的檔案或目錄find    /home    -perm    0700                  查許可權為700的檔案或目錄find    /tmp    -name tmp.txt    -exec cat {} \;find    /tmp    -name    tmp.txt    -ok    rm {} \; find     /    -amin     -10         # 尋找在系統中最後10分鐘訪問的檔案find     /    -atime    -2           # 尋找在系統中最後48小時訪問的檔案find     /    -empty                # 尋找在系統中為空白的檔案或者檔案夾find     /    -group    cat          # 尋找在系統中屬於 groupcat的檔案find     /    -mmin    -5           # 尋找在系統中最後5分鐘裡修改過的檔案find     /    -mtime    -1          #尋找在系統中最後24小時裡修改過的檔案find     /    -nouser               #尋找在系統中屬於作廢使用者的檔案find     /    -user     fred         #尋找在系統中屬於FRED這個使用者的檔案查目前的目錄下的所有普通檔案 -------------------------------------------------------------------------------- # find . -type f -exec ls -l {} \; -rw-r--r--      1 root       root          34928 2003-02-25    ./conf/httpd.conf -rw-r--r--      1 root       root          12959 2003-02-25    ./conf/magic -rw-r--r--      1 root       root            180 2003-02-25    ./conf.d/README 查目前的目錄下的所有普通檔案,並在- e x e c選項中使用ls -l命令將它們列出 =================================================在/ l o g s目錄中尋找更改時間在5日以前的檔案並刪除它們:$ find logs -type f -mtime +5 -exec    -ok    rm {} \; =================================================查詢當天修改過的檔案[[email protected] class]# find    ./    -mtime    -1    -type f    -exec    ls -l    {} \; =================================================查詢檔案並詢問是否要顯示[[email protected] class]# find    ./    -mtime    -1    -type f    -ok    ls -l    {} \;  < ls ... ./classDB.inc.php > ? y-rw-r--r--      1 cnscn      cnscn         13709    1月 12 12:22 ./classDB.inc.php[[email protected] class]# find    ./    -mtime    -1    -type f    -ok    ls -l    {} \;  < ls ... ./classDB.inc.php > ? n[[email protected] class]# =================================================查詢並交給awk去處理[[email protected] class]# who    |    awk    ‘{print $1"\t"$2}‘cnscn     pts/0 =================================================awk---grep---sed [[email protected] class]# df    -k |    awk ‘{print $1}‘ |    grep    -v    ‘none‘ |    sed    s"/\/dev\///g"檔案系統sda2sda1[[email protected] class]# df    -k |    awk ‘{print $1}‘ |    grep    -v    ‘none‘檔案系統/dev/sda2/dev/sda11)在/tmp中尋找所有的*.h,並在這些檔案中尋找“SYSCALL_VECTOR",最後列印出所有包含"SYSCALL_VECTOR"的檔案名稱 A) find    /tmp    -name    "*.h"    | xargs    -n50    grep SYSCALL_VECTORB) grep    SYSCALL_VECTOR    /tmp/*.h | cut     -d‘:‘    -f1| uniq > filenameC) find    /tmp    -name "*.h"    -exec grep "SYSCALL_VECTOR"    {}    \; -print 2)find / -name filename -exec rm -rf {} \;     find / -name filename -ok rm -rf {} \; 3)比如要尋找磁碟中大於3M的檔案:find . -size +3000k -exec ls -ld {} ; 4)將find出來的東西拷到另一個地方find *.c -exec cp ‘{}‘ /tmp ‘;‘ 如果有特殊檔案,可以用cpio,也可以用這樣的文法:find dir -name filename -print | cpio -pdv newdir 6)尋找2004-11-30 16:36:37時更改過的檔案# A=`find ./ -name "*php"` |    ls -l --full-time $A 2>/dev/null | grep "2004-11-30 16:36:37二、linux下find命令的用法1. 基本用法:      find / -name 檔案名稱      find ver1.d ver2.d -name ‘*.c‘ -print    尋找ver1.d,ver2.d *.c檔案並列印      find . -type d -print 從目前的目錄尋找,僅尋找目錄,找到後,列印路徑名。可用於列印目錄結構。2. 無錯誤尋找:      find / -name access_log 2 >/dev/null3. 按尺寸尋找:      find / -size 1500c (尋找1,500位元組大小的檔案,c表示位元組)      find / -size +1500c (尋找大於1,500位元組大小的檔案,+表示大於)          find / -size +1500c (尋找小於1,500位元組大小的檔案,-表示小於)    4. 按時間:      find / -amin n 最後n分鐘       find / -atime n 最後n天      find / -cmin n 最後n分鐘改變狀態      find / -ctime n 最後n天改變狀態5. 其它:      find / -empty 空白檔案、空白檔案夾、沒有子目錄的檔案夾      find / -false 尋找系統中總是錯誤的檔案      find / -fstype type 找存在於指定檔案系統的檔案,如type為ext2      find / -gid n 組id為n的檔案      find / -group gname 組名為gname的檔案      find / -depth n 在某層指定目錄中優先尋找檔案內容      find / -maxdepth levels 在某個層次目錄中按遞減方式尋找6. 邏輯      -and 條件與 -or 條件或7. 尋找字串      find . -name ‘*.html‘ -exec grep ‘mailto:‘{}

  

【轉】linux下find尋找命令用法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.