Linux 檢視系統檔案命令

mcxiaoracle發表於2021-09-06

1.

find +目錄 +條件 +條件值



 2. 在/home下查詢所有以 .txt 結尾的檔案: find /home -name “*.txt"  :

3.    在/home下查詢不是以 .txt 結尾的檔案:find /home ! -name ".txt"  !表示否定 (檔案太多,擷取部分):

4.        查詢/mnt下的子目錄:find /mnt -type d :

5.

       查詢/mnt下的檔案:find /mnt -type f : 


   find --maxdepth+層數  按最大層數查詢

               --mindepth+層數  按最小層數查詢

         find /home -maxdepth 2 -type f   查詢/hoem下目錄最大層數為2層的檔案:

           find /mnt -type f -size -100  在/mnt目錄下查詢小於100K的檔案:


     2.5.根據檔案許可權進行查詢:

          -perm 檔案許可權指數


   2.6       find /mnt -type f -perm 660 在/mnt下查詢許可權為660的檔案:


3.參考資料料

https://blog.csdn.net/Hguan07/article/details/76781246https://blog.csdn.net/Hguan07/article/details/76781246






















來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69949806/viewspace-2790571/,如需轉載,請註明出處,否則將追究法律責任。

相關文章