主頁 > 知識(shí)庫 > 使用find命令查找Linux中的隱藏文件的方法

使用find命令查找Linux中的隱藏文件的方法

熱門標(biāo)簽:淘寶系統(tǒng)退貨外呼項(xiàng)目考試答案 北京市地圖標(biāo)注 焦作人工智能電話機(jī)器人軟件 百度地圖標(biāo)注陰影動(dòng)態(tài) 2020電銷機(jī)器人排行 鹽城客服外呼系統(tǒng)軟件 廳外呼梯系統(tǒng)布線 鄭州營銷外呼系統(tǒng)運(yùn)營商 貴陽語音電銷機(jī)器人招商

我們可以在Linux 或者 Unix 系統(tǒng)上使用 find 命令去查詢所有(全部)隱藏文件

基本語法如下:

復(fù)制代碼
代碼如下:
[root@dabu.info ~]#find /要查找的文/件/夾/ -name ".*" -print

解釋:

1. ".*" 表示要查找的文件名。因?yàn)閘inux / Unix 的隱藏文件和文件夾名是以 “ . ”開頭的。而*表示通配符,意思是查找所有文件名和文件夾名中,以 "." 開始文件和文件夾。
2.-print 表示打印查找的結(jié)果。與 -ls 功能相同

或者


復(fù)制代碼
代碼如下:
[root@dabu.info ~]#find /要查找的文/件/夾/ -name ".*" -ls

或者只搜索隱藏的文件:


復(fù)制代碼
代碼如下:
[root@dabu.info ~]#find /要查找的文/件/夾/ -type f -iname ".*" -ls

或者只搜索隱藏的文件夾:


復(fù)制代碼
代碼如下:
[root@dabu.info ~]#find /要查找的文/件/夾/ -type d -iname ".*" -ls

解釋:
-type :指定要搜尋的文件的類型,是文件夾還是文件等,要與f或d一起用
f :意思代表文件,文件的英文是file。
d : 就代表文件夾,文件夾的英文是 directory
-iname :表示匹配文件名的時(shí)候,忽略大小寫。如,查找“fo*” ,則 “foo” ,"fOO"都會(huì)匹配。

或者


復(fù)制代碼
代碼如下:
[root@dabu.info ~]#find /要查找的文/件/夾/ -path '*/.*' -print/p> p>[root@dabu.info ~]#find /要查找的文/件/夾/ -path '*/.*' -ls

關(guān)于-path參數(shù)的解釋,見另外一篇文章《find命令中-path 參數(shù)的作用(意思)解釋》

 

在下面的例子中,查找 $HOME 下的所有隱藏的文件與文件夾($HOME就是用戶的家目錄,你可以用 (echo $HOME 命令來查看,你就明白意思了)


復(fù)制代碼
代碼如下:
[root@dabu.info ~]#find $HOME -name ".*" -ls #已經(jīng)遞歸查詢了

輸出如下:

復(fù)制代碼
代碼如下:

553607 4 -rw-r--r-- 1 root root 100 Sep 22 2004 ./.cshrc
6553664 4 -rw------- 1 root root 1024 Nov 17 04:40 ./.rnd
6553604 4 -rw-r--r-- 1 root root 18 May 20 2009 ./.bash_logout
6553665 4 drwx------ 2 root root 4096 Dec 18 2012 ./.gnupg
6553671 0 -rw------- 1 root root 0 Dec 18 2012 ./.gnupg/secring.gpg
6553669 0 -rw------- 1 root root 0 Dec 18 2012 ./.gnupg/pubring.gpg~
6553673 4 -rw------- 1 root root 899 Dec 18 2012 ./.gnupg/pubring.gpg
6553667 8 -rw------- 1 root root 7856 Dec 18 2012 ./.gnupg/gpg.conf
6553668 4 -rw------- 1 root root 1200 Dec 18 2012 ./.gnupg/trustdb.gpg
6553602 20 -rw------- 1 root root 17462 Apr 7 10:55 ./.bash_history
6553610 4 drwx------ 3 root root 4096 Jan 16 2013 ./.config
6553660 4 drwx------ 2 root root 4096 Jan 16 2013 ./.config/htop
6553681 4 -rw-r--r-- 1 root root 597 Apr 11 2013 ./.config/htop/htoprc
6553723 12 -rw------- 1 root root 9629 Mar 30 23:56 ./.viminfo
6553615 4 drwxr-xr-x 3 root root 4096 Nov 29 2012 ./.original-configs

為了將結(jié)果存放到文本文件foo.txt中,使用輸出重定向,命令如下:

復(fù)制代碼
代碼如下:

[root@dabu.info ~]#find $HOME -name ".*" -ls > foo.txt
[root@dabu.info ~]#cat foo.txt # 查看foo.txt文件的內(nèi)容,即find命令的運(yùn)行結(jié)果

下面假設(shè)我要查看 /home/www/  下的隱藏文件與文件夾,并將結(jié)果保存至foo.txt。使用下面的命令:

復(fù)制代碼
代碼如下:

[root@dabu.info ~]#find /home/www/ -name ".*" -ls > foo.txt

標(biāo)簽:石家莊 和田 湖南 淮安 法律問答 開封 和田 馬鞍山

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《使用find命令查找Linux中的隱藏文件的方法》,本文關(guān)鍵詞  使用,find,命令,查找,Linux,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《使用find命令查找Linux中的隱藏文件的方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于使用find命令查找Linux中的隱藏文件的方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章