Linux find
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
輸出:
[root@peidachang ~]# find -atime -2
.
./logs/monitor
./.bashrc
./.bash_profile
./.bash_history
說明:
超找48小時內修改過的檔案
例項2:根據關鍵字查詢
命令:
find . -name "*.log"
輸出:
[root@localhost 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
輸出:
[root@localhost 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"
輸出:
[root@localhost 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
[root@localhost test]#
說明:
查詢當目錄,以.log結尾的普通檔案
例項5:查詢當前所有目錄並排序
命令:
find . -type d | sort
輸出:
[root@localhost 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
[root@localhost test]#
例項6:按大小查詢檔案
命令:
find . -size +1000c -print
輸出:
[root@localhost 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
[root@localhost 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 {} \;
=================================================
查詢當天修改過的檔案
[root@book class]# find ./ -mtime -1 -type f -exec ls -l {} \;
=================================================
查詢檔案並詢問是否要顯示
[root@book 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
[root@book class]# find ./ -mtime -1 -type f -ok ls -l {} \;
< ls ... ./classDB.inc.php > ? n
[root@book class]# =================================================
查詢並交給awk去處理
[root@book class]# who | awk '{print $1"\t"$2}'
cnscn pts/0 =================================================
awk---grep---sed [root@book class]# df -k | awk '{print $1}' | grep -v 'none' | sed s"/\/dev\///g"
檔案系統
sda2
sda1
[root@book class]# df -k | awk '{print $1}' | grep -v 'none'
檔案系統
/dev/sda2
/dev/sda1
1)在/tmp中查詢所有的*.h,並在這些檔案中查詢“SYSCALL_VECTOR",最後列印出所有包含"SYSCALL_VECTOR"的檔名 A) find /tmp -name "*.h" | xargs -n50 grep SYSCALL_VECTOR
B) grep SYSCALL_VECTOR /tmp/*.h | cut -d':' -f1| uniq > filename
C) 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/null
3. 按尺寸查詢:
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:'{}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29446986/viewspace-1300723/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- linux find命令Linux
- linux find 命令Linux
- linux find 命令!Linux
- Linux - find與grepLinux
- linux之shell findLinux
- Linux find commandLinux
- linux/unix find命令Linux
- Linux find 命令詳解Linux
- Linux find命令詳解Linux
- linux find command studyLinux
- Linux精講——find命令Linux
- linux find詳解(轉)Linux
- linux下的find 和 grepLinux
- 【Linux】find指令和grep指令!!!Linux
- Linux find常見用法示例Linux
- 如何在 Linux 中使用 findLinux
- linux find depth引數理解Linux
- Linux 常用基本命令 findLinux
- Unable to Find Sources for Current Linux KernelLinux
- (轉)Linux find命令詳解Linux
- Linux下find命令詳解Linux
- Linux Find 命令精通指南Linux
- Linux/Unix重要find命令詳解Linux
- 在 Linux中find命令使用技巧Linux
- linux 查詢檔案命令 findLinux
- linux中file命令和find命令Linux
- Linux中find常見用法示例Linux
- LINUX find的高階查詢Linux
- Find Out Top Ten Largest Files in LinuxLinux
- Linux下find命令的用法(轉)Linux
- Linux學習之linux的find命令如何使用?Linux
- linux每日命令(20):find命令概覽Linux
- Linux基礎:檔案查詢findLinux
- Linux - find命令常用引數與示例Linux
- Linux下which、whereis、locate、find區別Linux
- linux命令終極系列之(find)(轉)Linux
- Linux下ulimit、find命令使用者LinuxMIT
- Linux 命令列:find 的 26 個用法示例Linux命令列