自學shell之find
來自專欄菜鳥學編程
find是個使用頻率比較高的命令。常常用它在系統特定目錄下,查找具有某種特徵【名字類型屬主許可權等】的文件
Linux中find常見用法示例
find path -option [ -print ] [ -exec -ok command ] {} ;find命令的參數;pathname: find命令所查找的目錄路徑。例如用.來表示當前目錄,用/來表示系統根目錄。-print: find命令將匹配的文件輸出到標準輸出。
-exec: find命令對匹配的文件執行該參數所給出的shell命令。相應命令的形式為command { } ;,注意{ }和;之間的空格。-ok: 和-exec的作用相同,只不過以一種更為安全的模式來執行該參數所給出的shell命令,在執行每一個命令之前,都會給出提示,讓用戶來確定是否執行。#-print 將查找到的文件輸出到標準輸出#-exec command {} ; —–將查到的文件執行command操作,{} 和 ;之間有空格#-ok 和-exec相同,只不過在操作前要詢用戶 例:find . -name .svn | xargs rm -rf屬性:
-name filename #查找名為filename的文件-perm #按執行許可權來查找-user username #按文件屬主來查找-group groupname #按組來查找-mtime -n +n #按文件更改時間來查找文件,-n指n天以內,+n指n天以前-atime -n +n #按文件訪問時間來查GIN: 0px">-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舊的文件-type b/d/c/p/l/f #查是塊設備、目錄、字元設備、管道、符號鏈接、普通文件-size n[c] #查長度為n塊[或n位元組]的文件-depth #使查找在進入子目錄前先行查找完本目錄-fstype #查位於某一類型文件系統中的文件,這些文件系統類型通常可 在/etc/fstab中找到-mount #查文件時不跨越文件系統mount點-follow #如果遇到符號鏈接文件,就跟蹤鏈接所指的文件-cpio %; #查位於某一類型文件系統中的文件,這些文件系統類型通常可 在/etc/fstab中找到-mount #查文件時不跨越文件系統mount點-follow #如果遇到符號鏈接文件,就跟蹤鏈接所指的文件-cpio #對匹配的文件使用cpio命令,將他們備份到磁帶設備中-prune #忽略某個目錄
下面通過一些簡單的例子來介紹下find的常規用法:
1、按名字查找
在當前目錄及子目錄中,查找大寫字母開頭的txt文件
[root@localhost ~]# find . -name [A-Z]*.txt -print
在/etc及其子目錄中,查找host開頭的文件
[root@localhost ~]# find /etc -name host* -print
在$HOME目錄及其子目錄中,查找所有文件
[root@localhost ~]# find ~ -name * -print在當前目錄及子目錄中,查找不是out開頭的txt文件
[root@localhost .code]# find . -name "out*" -prune -o -name "*.txt" -print2、按目錄查找
在當前目錄除aa之外的子目錄內搜索 txt文件
[root@localhost .code]# find . -path "./aa" -prune -o -name "*.txt" -print
在當前目錄及除aa和bb之外的子目錄中查找txt文件
[root@localhost .code]# find . ?path"./aa"?o?path"./bb"?path"./aa"?o?path"./bb" -prune -o -name "*.txt" -print在當前目錄,不再子目錄中,查找txt文件
[root@localhost .code]# find . ! -name "." -type d -prune -o -type f -name "*.txt" -print3、按許可權查找
在當前目錄及子目錄中,查找屬主具有讀寫執行,其他具有讀執行許可權的文件
[root@localhost ~]# find . -perm 755 -print4、按類型查找
在當前目錄及子目錄下,查找符號鏈接文件
[root@localhost .code]# find . -type l -print5、按屬主及屬組
查找屬主是www的文件
[root@localhost .code]# find / -user www -type f -print查找屬主被刪除的文件
[root@localhost .code]# find / -nouser -type f -print查找屬組mysql的文件
[root@localhost .code]# find / -group mysql -type f -print
查找用戶組被刪掉的文件
[root@localhost .code]# find / -nogroup -type f -print
6、按時間查找
查找2天內被更改過的文件
[root@localhost .code]# find . -mtime -2 -type f -print查找2天前被更改過的文件
[root@localhost .code]# find . -mtime +2 -type f -print查找一天內被訪問的文件
[root@localhost .code]# find . -atime -1 -type f -print查找一天前被訪問的文件
[root@localhost .code]# find . -atime +1 -type f -print查找一天內狀態被改變的文件
[root@localhost .code]# find . -ctime -1 -type f -print
查找一天前狀態被改變的文件
[root@localhost .code]# find . -ctime +1 -type f -print查找10分鐘以前狀態被改變的文件
[root@localhost .code]# find . -cmin +10 -type f -print7、按文件新舊
查找比aa.txt新的文件
[root@localhost .code]# find . -newer "aa.txt" -type f -print查找比aa.txt舊的文件
[root@localhost .code]# find . ! -newer "aa.txt" -type f -print查找比aa.txt新,比bb.txt舊的文件
[root@localhost .code]# find . -newer aa.txt ! -newer bb.txt -type f -print
8、按大小查找
查找超過1M的文件
[root@localhost .code]# find / -size +1M -type f -print查找等於6位元組的文件
[root@localhost .code]# find . -size 6c -print查找小於32k的文件
[root@localhost .code]# find . -size -32k -print9、執行命令
查找del.txt並刪除,刪除前提示確認
[root@localhost .code]# find . -name del.txt -ok rm {} ;
查找aa.txt 並備份為aa.txt.bak
[root@localhost .code]# find . -name aa.txt -exec cp {} {}.bak ;
查找aa.txt 歸檔壓縮為aa.txt.tar.gz 並刪除aa.txt
find . -name "aa.txt" -type f -exec tar -zcvf {}.tar.gz {} ; -exec rm -rf {} ; > /dev/null一些例子:
=====================================================$find ~ -name "*.txt" -print #在$HOME中查.txt文件並顯示$find . -name "*.txt" -print$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 . -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" "$2}』cnscn pts/0
更多精彩,請關注微信公眾號:python 愛好部落
推薦閱讀:
※回家前,我告訴我媽我一個月13000多了...
※三年自動化測試經驗分享
※測試工程師的單步思維
※音頻測線器的使用方法,它都能測哪些線材的連通性呢?
※高級測試工程師必備的測試方法