本文介紹RHEL7下which、whereis、locate、find命令的使用,重點介紹find命令的使用
命令:which
作用:查找命令的執行文件路徑
語法:which [選項] [--] 名稱...
說明:which命令比較簡單,他的選項都是不常用的
[root@localhost ~]# which -- nginx
/usr/bin/which: no nginx in (/usr/lib64/qt-3.3/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/
sbin:/usr/bin:/usr/local/java/jdk1.7.0_79/bin:/usr/local/mysql/bin:/root/bin)
[root@localhost ~]# which nginx cat passwd
/usr/bin/which: no nginx in (/usr/lib64/qt-3.3/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/
sbin:/usr/bin:/usr/local/java/jdk1.7.0_79/bin:/usr/local/mysql/bin:/root/bin)
/bin/cat
/usr/bin/passwd
命令:whereis
作用:定位可執行文件、源代碼文件、幫助文件在文件系統中的位置
語法:whereis [-bmsu] [BMS 目錄名 -f ] 文件名
[root@localhost ~]# whereis tomcat
tomcat: /usr/local/tomcat
locate讓使用者可以很快速的搜尋檔案系統內是否有指定的檔案
其方法是先建立一個包括系統內所有檔案名稱及路徑的數據庫
之後當尋找時就只需查詢這個數據庫,而不必實際深入檔案系統之中了
命令:locate
作用:通過索引數據庫查找文件
語法:locate [選項]... [PATTERN]...
[root@localhost ~]# locate /etc/passwd
/etc/passwd
/etc/passwd-
如果使用locate查詢不到,則使用命令updatedb更新下mlocate數據庫即可
[root@localhost ~]# touch abcd123456dcba.txt
[root@localhost ~]# locate abcd123456dcba.txt
[root@localhost ~]# updatedb
[root@localhost ~]# locate abcd123456dcba.txt
/root/abcd123456dcba.txt
find命令是在目錄結構中搜索文件,並執行指定的操作
find命令提供了相當多的查找條件,功能很強大
命令:find
作用:
語法:find [選項] [路徑...] [表達式]
說明:
operators即邏輯運算符,默認為and,優先級順序為:
(表達式)、!表達式、-not 表達式、表達式1 -a 表達式2、
表達式1 -and 表達式2、表達式1 -o 表達式2、表達式1 -or 表達式2、
表達式1,表達式2
即優先級:
括號>!>-not>-a>-and>-o>-or
多個表達式用逗號隔開前一個優先級高於後一個
actions即動作,默認為-print,以下是常見的動作:
-delete -print0 -printf FORMAT -fprintf FILE FORMAT -print
-fprint0 FILE -fprint FILE -ls -fls FILE -prune -quit
-exec COMMAND
-exec COMMAND {} + -ok COMMAND
-execdir COMMAND
-execdir COMMAND {} + -okdir COMMAND
find命令的表達式非常多下面只介紹常用的幾種:
-name選項是find命令最常用的選項,要麼單獨使用該選項,要麼和其他選項一起使用
注意:可以使用某種文件名模式來匹配文件,記住要用引號將文件名模式引起來
不管當前路徑是什麼,如果想要在自己的根目錄$HOME中查找文件名符合*.txt的文件
則使用~作為'pathname'參數,波浪號~代表了你的$HOME目錄
[root@VM_200_13_CentOS ~]# touch tokyohot.txt
[root@VM_200_13_centos ~]# find ~ -name "*.txt"
/root/tokyohot.txt
[root@VM_200_13_centos ~]# cd /
[root@VM_200_13_centos /]# find ~ -name "*.txt"
/root/tokyohot.txt
在當前目錄及子目錄中查找所有的*.txt文件
[root@VM_200_13_centos firmware]# find . -name "*.txt" -print
./ar3k/1020201/RamPatch.txt
./ar3k/30101/RamPatch.txt
./ar3k/30101coex/RamPatch.txt
./ar3k/1020200/RamPatch.txt
./ar3k/30000/RamPatch.txt
./qca/NOTICE.txt
./ath10k/QCA988X/hw2.0/notice_ath10k_firmware-4.txt
./TDA7706_OM_v3.0.2_boot.txt
./TDA7706_OM_v2.5.1_boot.txt
想要在/etc目錄中查找文件名以host開頭的文件
[root@VM_200_13_centos firmware]# find /etc -name "host*"
/etc/selinux/targeted/modules/active/modules/hostname.pp
/etc/host.conf
/etc/hosts
/etc/hosts.deny
/etc/hostname
/etc/hosts.allow
按文件權限模式來查找文件的話。最好使用三位十進制的權限表示法
如在當前目錄下查找文件權限位為755的文件,即屬主可以讀、寫、執行,其他用戶可以讀、執行的文件
[root@VM_200_13_centos ~]# find -perm 755
[root@VM_200_13_centos ~]# ll
total 0
-rw-r--r-- 1 root root 0 Aug 17 00:47 tokyohot.txt
[root@VM_200_13_centos ~]# chmod 755 tokyohot.txt
[root@VM_200_13_centos ~]# find -perm 755
./tokyohot.txt
使用-prune選項來指出需要忽略的目錄
在使用該選項時如果同時使用-depth選項,那麼-prune選項就會被find命令忽略
/apps目錄下查找文件,但不希望在/apps/bin目錄下查找
[root@VM_200_13_centos ~]# find /apps -path "/apps/bin" -prune -o -print
/apps
/apps/d
/apps/c
可能希望先匹配當前所有的文件,再在子目錄中查找
在下面的例子中, find命令從文件系統的根目錄開始,查找一個名為CON.FILE的文件
它將首先匹配所有的文件然後再進入子目錄中查找
[root@VM_200_13_centos ~]# find / -depth -name "CON.FILE" -print
/CON.FILE
按文件屬主查找文件,如在$HOME目錄中查找文件屬主為root的文件
[root@VM_200_13_centos ~]# find -user root -print
.
./a
./.bash_history
./.ssh
./.ssh/authorized_keys
./tokyohot.txt
./.bashrc
./.cshrc
./.bash_logout
./.tcshrc
./.bash_profile
為了查找屬主帳戶已經被刪除的文件,可以使用-nouser選項
這樣就能夠找到那些屬主在/etc/passwd文件中沒有有效帳戶的文件
在使用-nouser選項時,不必給出用戶名; find命令能夠為你完成相應的工作
root@VM_200_13_centos ~]# find /etc/ -nouser
就像user和nouser選項一樣,針對文件所屬於的用戶組, find命令也具有同樣的選項
[root@VM_200_13_centos ~]# find -group root -print
.
./a
./.bash_history
./.ssh
./.ssh/authorized_keys
./tokyohot.txt
./.bashrc
./.cshrc
./.bash_logout
./.tcshrc
./.bash_profile
./.history
./.viminfo
要查找沒有有效所屬用戶組的所有文件,可以使用nogroup選項
[root@VM_200_13_centos ~]# groupadd xxx
[root@VM_200_13_centos ~]# touch xx.txt
[root@VM_200_13_centos ~]# chown :xxx xx.txt
[root@VM_200_13_centos ~]# ll xx.txt
-rw-r--r-- 1 root xxx 0 Aug 17 01:21 xx.txt
[root@VM_200_13_centos ~]# find -group xxx
./xx.txt
[root@VM_200_13_centos ~]# groupdel xxx
[root@VM_200_13_centos ~]# find -nogroup
./xx.txt
如果希望按照更改時間來查找文件,可以使用mtime,atime或ctime選項
如果系統突然沒有可用空間了,很有可能某一個文件的長度在此期間增長迅速,這時就可以用mtime選項來查找這樣的文件
用減號-來限定更改時間在距今n日以內的文件
用加號+來限定更改時間在距今n日以前的文件
希望在系統/root目錄下查找更改時間在5日以內的文件
[root@VM_200_13_centos ~]# find /root -mtime -5 -print
/root
/root/a
/root/.bash_history
/root/xx.txt
/root/tokyohot.txt
/root/.history
/root/.viminfo
-type 查找某一類型的文件
在/etc目錄下查找所有的目錄
[root@VM_200_13_centos ~]# find /etc -type d
/etc
/etc/selinux
/etc/selinux/targeted
/etc/selinux/targeted/contexts
/etc/selinux/targeted/contexts/users
...
可以按照文件長度來查找文件
這裡所指的文件長度既可以用塊(block)來計量
也可以用字節來計量
以字節計量文件長度的表達形式為nc,n代表大小
以塊計量文件長度只用數字表示即可
在按照文件長度查找文件時,一般使用這種以字節表示的文件長度,在查看文件系統的大小,因為這時使用塊來計量更容易轉換
在當前目錄下查找文件長度大於1 M字節的文件
[root@VM_200_13_centos ~]# find . -size +1000000c -print
在/home/apache目錄下查找文件長度恰好為100字節的文件
[root@VM_200_13_centos ~]# find /home/apache -size 100c -print
在當前目錄下查找長度超過10塊的文件(一塊等於512字節)
[root@VM_200_13_centos ~]# find . -size +10 -print