find命令是一個經常使用的且強大的命令,如何在linux系統下使用這個命令呢? 這個命令所包含的參數特別。。本文將會講述一些經常使用的linux find 命令選項的用法。 mysql
find命令的格式:find [-path……] -options [-print -exec -ok]
path:要查找的目錄路徑。
~ 表示$HOME目錄
. 表示當前目錄
/ 表示根目錄
print:表示將結果輸出到標準輸出。
exec:對匹配的文件執行該參數所給出的shell命令。
形式爲command {} \;,注意{}與\;之間有空格
ok:與exec做用相同,
區別在於,在執行命令以前,都會給出提示,讓用戶確認是否執行
options經常使用的有下選項:
-name:按照名字查找
-perm:安裝權限查找
-prune:再也不當前指定的目錄下查找
-user:文件屬主來查找
-group:文件所屬組來查找
-nogroup:查找無有效所屬組的文件
-nouser:查找無有效屬主的文件
-type:按照文件類型查找
下面經過一些簡單的例子來介紹下find的常規用法:
一、按名字查找
在當前目錄及子目錄中,查找大寫字母開頭的txt文件
$ find . -name '[A-Z]*.txt' -print
在/etc及其子目錄中,查找host開頭的文件
$ find /etc -name 'host*' -print
在$HOME目錄及其子目錄中,查找全部文件
$ find ~ -name '*' -print
在當前目錄及子目錄中,查找不是out開頭的txt文件
$ find . -name "out*" -prune -o -name "*.txt" -print
二、按目錄查找
在當前目錄除aa以外的子目錄內搜索 txt文件
$ find . -path "./aa" -prune -o -name "*.txt" -print
在當前目錄及除aa和bb以外的子目錄中查找txt文件
$ find . \( -path "./aa" -o -path "./bb" \) -prune -o -name "*.txt" -print
在當前目錄,再也不子目錄中,查找txt文件
$ find . ! -name "." -type d -prune -o -type f -name "*.txt" -print
三、按權限查找
在當前目錄及子目錄中,查找屬主具備讀寫執行,其餘具備讀執行權限的文件
$ find . -perm 755 -print
四、按類型查找
在當前目錄及子目錄下,查找符號連接文件
$ find . -type l -print
五、按屬主及屬組
查找屬主是www的文件
$ find / -user www -type f -print
查找屬主被刪除的文件
$ find / -nouser -type f -print
查找屬組mysql的文件
$ find / -group mysql -type f -print
查找用戶組被刪掉的文件
$ find / -nogroup -type f -print
六、按時間查找
查找2天內被更改過的文件
$ find . -mtime -2 -type f -print
查找2天前被更改過的文件
$ find . -mtime +2 -type f -print
查找一天內被訪問的文件
$ find . -atime -1 -type f -print
查找一天前被訪問的文件
$ find . -atime +1 -type f -print
查找一天內狀態被改變的文件
$ find . -ctime -1 -type f -print
查找一天前狀態被改變的文件
$ find . -ctime +1 -type f -print
查找10分鐘之前狀態被改變的文件
$ find . -cmin +10 -type f -print
七、按文件新舊
查找比aa.txt新的文件
$ find . -newer "aa.txt" -type f -print
查找比aa.txt舊的文件
$ find . ! -newer "aa.txt" -type f -print
查找比aa.txt新,比bb.txt舊的文件
$ find . -newer 'aa.txt' ! -newer 'bb.txt' -type f -print
八、按大小查找
查找超過1M的文件
$ find / -size +1M -type f -print
查找等於6字節的文件
$ find . -size 6c -print
查找小於32k的文件
$ find . -size -32k -print
九、執行命令
查找del.txt並刪除,刪除前提示確認
$ find . -name 'del.txt' -ok rm {} \;
查找aa.txt 並備份爲aa.txt.bak
$ find . -name 'aa.txt' -exec cp {} {}.bak \; linux