find的命令常見方法

2021-09-11 07:29:09 字數 1237 閱讀 9673

find / -name  test.*  

找到名稱為test的所有檔案

find  /  -iname test

找到名稱為test的所有檔案,並在/ home目錄中同時包含大寫和小寫字母。 

find  -type f  -name  test.php

在/目錄中查詢名稱為test的所有目錄

4-find -type f -perm 0777 -print  

查詢許可權為777的所有檔案

5-find  -type d  -name  test.php

在/目錄中查詢名稱為test的所有目錄 6-

find -type f ! -perm 0777 -print

查詢所有檔案未經許可777。 7-

-find  -perm /u=s  

查詢所有suid集檔案 8-

find  -perm /u=r

查詢所有唯讀檔案 9-

find  -perm /u=x

查詢所有可執行檔案

10-find -type f -perm 0777 -print exec chmod 644{}\;

查詢所有777個許可權檔案,並使用chmod命令將許可權設定為644

11-find  -type f  -name  test.php -exec rm -f{}\;

到乙個名為test.c的檔案並將其刪除

12-find  /  -type f  -name -empty 查詢空文件

13-find  /  -type d  -name -empty 查詢目錄

14-find  / -user root  -name test查詢使用者root的所有檔案

15-find  / -grouproot  -name test查詢組root的所有檔案

16-find  /  -atime 50查詢50天訪問

17-find  /  -mtime +50 -mtime -100  

查詢所有被修改超過50天以及少於100天的檔案

18-find  /  -ctime -60

查詢最近1小時內更改的所有檔案

19-find  /  -atime -60查詢最近1小時內訪問的檔案

20-find  /  -size +50m -size -100m

找到大於50mb且小於100mb的所有檔案

Python os的常見方法

1 os.getcwd filename 相當於在當前執行檔案的目錄下建立乙個以filename命名的檔案 2 os.path.realpath file 獲取當前檔案路徑 c users admin pycharmprojects test case test unitest.py file 表示...

Java Collection常見方法

collection的常見方法 1 新增 boolean add object obj 新增單個物件 boolean addall collection coll 新增集合 2 刪除 boolean remove object obj 刪除單個物件 boolean removeall collect...

Java Set常見方法

set 元素不能重複,無序。set介面中的方法和collection一致 hashset 內部資料結構是雜湊表,是不同步的。雜湊表確定元素是否相同 1 判斷的是兩個元素的雜湊值是否相同,如果相同再判斷兩個物件的內容是否相同。2 判斷雜湊值相同,其實判斷的是物件的hashcode的方法,判斷內容相同,...