find命令在目錄結構中搜索文件,並執行指定的操做。Linux下find命令提供了至關多的查找條件,功能很強大。因爲find具備強大的功能,因此它的選項也不少,其中大部分選項都值得咱們花時間來了解一下。即便系統中含有網絡文件系統( NFS),find命令在該文件系統中一樣有效,只你具備相應的權限。 在運行一個很是消耗資源的find命令時,不少人都傾向於把它放在後臺執行,由於遍歷一個大的文件系統可能會花費很長的時間(這裏是指30G字節以上的文件系統)html
find [選項] [參數]mysql
參數 | 備註 |
---|---|
-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分鐘被改變文件數據的文件 |
假設find指令的回傳值爲Ture,就將文件或目錄名稱列出到標準輸出。格式爲每列一個名稱,每一個名稱前皆有「./」字符串 | |
-exec (命令) | 假設find指令的回傳值爲True,就執行該指令; |
在指定目錄下查找指定時間內修改過的文件linux
命令: find /root -atime -1 git
[root@VM_0_9_centos ~]# find /root -atime -1 /root/.cache/abrt/lastnotification /root/mysql.password /root/.mysql_history /root/.viminfo
查找24小時內修改過的文件github
根據關鍵字查找sql
命令: **find . -name "*.log"**shell
[root@VM_0_9_centos ~]# find . -name "*.log" ./myLog.log
在當前目錄查找 以.log結尾的文件。 ". "表明當前目錄數據庫
按照目錄或文件的權限來查找文件vim
命令: find . -perm 644 centos
[root@VM_0_9_centos ~]# ls -al # 顯示文件權限 total 161228 dr-xr-x---. 6 root root 4096 Nov 4 22:51 . dr-xr-xr-x. 20 root root 4096 Nov 5 21:09 .. -rw------- 1 root root 25151 Nov 5 21:09 .bash_history -rw-r--r--. 1 root root 18 Dec 29 2013 .bash_logout -rw-r--r--. 1 root root 176 Dec 29 2013 .bash_profile -rw-r--r--. 1 root root 176 Dec 29 2013 .bashrc drwxr-xr-x 3 root root 4096 Dec 11 2017 .cache drwxr-xr-x 3 root root 4096 Dec 11 2017 .config -rw-r--r--. 1 root root 100 Dec 29 2013 .cshrc -rw-r--r-- 1 root root 159019376 Jul 6 14:54 jdk-8u11-linux-x64.tar.gz -rw------- 1 root root 122 Nov 4 14:41 .lesshst -rw-r--r-- 1 root root 229 Nov 3 20:59 myFile -rw-r--r-- 1 root root 91 Nov 2 15:43 myFile2 -rw-r--r-- 1 root root 857836 Nov 4 23:15 myLog.log -rw------- 1 root root 611 Nov 4 22:49 .mysql_history -rw-r--r-- 1 root root 31 Nov 4 22:51 mysql.password drwxr-xr-x 2 root root 4096 Jul 6 01:39 .pip -rw-r--r-- 1 root root 73 Jul 6 01:39 .pydistutils.cfg -rw-r--r-- 1 root root 4930939 May 25 2017 rabbitmq-server-3.6.10-1.el7.noarch.rpm drwx------ 2 root root 4096 Apr 12 2018 .ssh -rw-r--r--. 1 root root 129 Dec 29 2013 .tcshrc -rw------- 1 root root 4434 Nov 4 22:51 .viminfo [root@VM_0_9_centos ~]# [root@VM_0_9_centos ~]# find . -perm 644 # 查找權限爲rw-r--r--的文件 ./.tcshrc ./.bashrc ./myLog.log ./.pip/pip.conf ./.cshrc ./jdk-8u11-linux-x64.tar.gz ./.bash_logout ./mysql.password ./rabbitmq-server-3.6.10-1.el7.noarch.rpm ./.bash_profile ./.pydistutils.cfg ./myFile2 ./myFile
查找/opt/soft/test/目錄下 權限爲 777的文件
按類型查找
命令: **find . -type f -name "*.log"**
[root@VM_0_9_centos ~]# find . -type f -name "*.log" ./myLog.log
查找當目錄,以.log結尾的普通文件
查找當前全部目錄並排序
命令: find . -type d | sort
[root@VM_0_9_centos ~]# find . -type d | sort . ./.cache ./.cache/abrt ./.config ./.config/abrt ./.pip ./.ssh [root@VM_0_9_centos ~]#
按大小查找文件
命令: find . -size +1024c -print
[root@VM_0_9_centos ~]# find . -size +1024c -print . ./.bash_history ./myLog.log ./.cache ./.cache/abrt ./.pip ./.config ./.config/abrt ./jdk-8u11-linux-x64.tar.gz ./.ssh ./rabbitmq-server-3.6.10-1.el7.noarch.rpm ./.viminfo
查找當前目錄大於1K的文件
find命令的-exec選項,能夠結合其它命令用於進一步過濾或執行其它操做。-exec參數後面跟其它命令,以;
爲終止,考慮不一樣系統關於分號的含義可能有所不一樣,通常會加上反斜槓。{}
花括號表示查詢出來的文件
ls -l命令放在find命令的-exec選項中
命令: find . -name "myFile*" -exec ls -l {} \;
[root@VM_0_9_centos ~]# find . -name "myFile*" -exec ls -l {} \; -rw-r--r-- 1 root root 91 Nov 2 15:43 ./myFile2 -rw-r--r-- 1 root root 229 Nov 3 20:59 ./myFile
查詢到文件並執行刪除操做
命令: find . -name "myFile2*" -exec rm {} \;
[root@VM_0_9_centos ~]# find . -name "myFile2" -exec rm {} \; [root@VM_0_9_centos ~]# ll total 161132 -rw-r--r-- 1 root root 159019376 Jul 6 14:54 jdk-8u11-linux-x64.tar.gz -rw-r--r-- 1 root root 229 Nov 3 20:59 myFile #只剩下myFile,myFile2文件被刪除了 -rw-r--r-- 1 root root 857836 Nov 4 23:15 myLog.log -rw-r--r-- 1 root root 31 Nov 4 22:51 mysql.password -rw-r--r-- 1 root root 4930939 May 25 2017 rabbitmq-server-3.6.10-1.el7.noarch.rpm
配合grep命令使用
命令: find /etc -name "passwd" -exec "root" {} \;
[root@VM_0_9_centos ~]# find /etc -name "passwd" -exec grep "root" {} \; root:x:0:0:root:/root:/bin/bash operator:x:11:0:operator:/root:/sbin/nologin
find命令首先匹配全部文件名爲「passwd"的文件,如passwd 、passwd.old、passwd.bak,而後執行grep命令查看這些文件中是否存在一個root用戶
which
查看可執行文件的位置,經過環境變量PATH定義的路徑下搜索可執行文件。whereis
查看文件的位置,包括man手冊文件,源文件,二進制文件等。locate
配合數據庫查看文件位置。find
實際搜尋硬盤查詢文件名稱。