linux每日命令 21 find命令之exec

2022-07-03 11:21:12 字數 3618 閱讀 2687

find是我們很常用的乙個linux命令,但是我們一般查詢出來的並不僅僅是看看而已,還會有進一步的操作,這個時候exec的作用就顯現出來了。

-exec 引數後面跟的是command命令,它的終止是以;為結束標誌的,所以這句命令後面的分號是不可缺少的,考慮到各個系統中分號會有不同的意義,所以前面加反斜槓

{} 花括號代表前面find查詢出來的檔名

使用find時,只要把想要的操作寫在乙個檔案裡,就可以用exec來配合find查詢,很方便的。在有些作業系統中只允許-exec選項執行諸如l s或ls -l這樣的命令。大多數使用者使用這一選項是為了查詢舊檔案並刪除它們。建議在真正執行rm命令刪除檔案之前,最好先用ls命令看一下,確認它們是所要刪除的檔案。 exec選項後面跟隨著所要執行的命令或指令碼,然後是一對兒,乙個空格和乙個\,最後是乙個分號。為了使用exec選項,必須要同時使用print選項。如果驗證一下find命令,會發現該命令只輸出從當前路徑起的相對路徑及檔名。

命令:

find . -type f -exec ls -l {} \;
輸出:

[root@localhost home]# ls

1.log 2.log 3.c 4.log test

[root@localhost home]# find -type f

./1.log

./2.log

./3.c

[root@localhost home]# find -type f -exec ls -l {} \;

-rw-r--r--. 1 root root 0 nov 14 17:55 ./1.log

-rw-r--r--. 1 root root 0 nov 14 17:55 ./2.log

-rwxrwxrwx. 1 root root 0 nov 14 18:00 ./3.c

命令:

find -type f -mtime -1 -exec rm {} \;
輸出:

[root@localhost home]# ll

total 0

-rw-r--r--. 1 root root 0 nov 14 17:55 1.log

-rw-r--r--. 1 root root 0 nov 14 17:55 2.log

-rwxrwxrwx. 1 root root 0 nov 14 18:00 3.c

drwxr-xr-x. 2 root root 6 nov 14 18:16 4.log

-rw-r--r--. 1 root root 0 nov 15 18:02 5.log

drwxr-xr-x. 2 root root 6 nov 14 17:55 test

[root@localhost home]# find -type f -mtime -1

./5.log

[root@localhost home]# find -type f -mtime -1 -exec rm {} \;

[root@localhost home]# ls

1.log 2.log 3.c 4.log test

說明:

在shell中用任何方式刪除檔案之前,應當先檢視相應的檔案,一定要小心!當使用諸如mv或rm命令時,可以使用-exec選項的安全模式。它將在對每個匹配到的檔案進行操作之前提示你。

命令:

find -name "*.log" -type f  -mtime -1 -ok rm {} \;
輸出:

[root@localhost home]# touch 6.c

[root@localhost home]# touch 7.c

[root@localhost home]# ls

1.log 2.log 3.c 4.log 6.log 7.c test

[root@localhost home]# ll

total 0

-rw-r--r--. 1 root root 0 nov 14 17:55 1.log

-rw-r--r--. 1 root root 0 nov 14 17:55 2.log

-rwxrwxrwx. 1 root root 0 nov 14 18:00 3.c

drwxr-xr-x. 2 root root 6 nov 14 18:16 4.log

-rw-r--r--. 1 root root 0 nov 15 18:07 6.log

-rw-r--r--. 1 root root 0 nov 15 18:07 7.c

drwxr-xr-x. 2 root root 6 nov 14 17:55 test

[root@localhost home]# find -name "*.log" -mtime -1 -ok rm {} \;

< rm ... ./6.log > ? y

[root@localhost home]# ll

total 0

-rw-r--r--. 1 root root 0 nov 14 17:55 1.log

-rw-r--r--. 1 root root 0 nov 14 17:55 2.log

-rwxrwxrwx. 1 root root 0 nov 14 18:00 3.c

drwxr-xr-x. 2 root root 6 nov 14 18:16 4.log

-rw-r--r--. 1 root root 0 nov 15 18:07 7.c

drwxr-xr-x. 2 root root 6 nov 14 17:55 test

[root@localhost home]# ls

1.log 2.log 3.c 4.log 7.c test

說明:

** -ok: 和-exec的作用相同,只不過以一種更為安全的模式來執行該引數所給出的shell命令,在執行每乙個命令之前,都會給出提示,讓使用者來確定是否執行。 **

命令:

find -name "*.log" -exec mv {} test \;
輸出:

[root@localhost home]# tree

.├── 1.log

├── 2.log

├── 3.c

├── 4.log

├── 7.c

└── test

2 directories, 4 files

[root@localhost home]# find -name "*.log" -exec mv {} test \;

[root@localhost home]# ls

3.c 7.c test

[root@localhost home]# tree

.├── 3.c

├── 7.c

└── test

├── 1.log

├── 2.log

└── 4.log

2 directories, 4 files

Linux命令每日學之find

find命令是在指定目錄下查詢檔案或者子目錄。區別與grep的是 grep 是在檔案中查詢字元。如果不指定引數,find預設查詢當前目錄下檔案和子目錄。find 引數 目錄 檔名 在指定目錄查詢滿足條件的檔案或者子目錄。name 檔名稱 查詢名稱為指定名稱的檔案。iname 檔名稱 查詢名稱為指定名...

linux每日命令 20 find命令概覽

linux下find命令在目錄結構中搜尋檔案,並執行指定的操作。linux下find命令提供了相當多的查詢條件,功能很強大。由於find具有強大的功能,所以它的選項也很多,其中大部分選項都值得我們花時間來了解一下。即使系統中含有網路檔案系統 nfs find命令在該檔案系統中同樣有效,只你具有相應的...

linux每日命令 20 find命令概覽

linux下find命令在目錄結構中搜尋檔案,並執行指定的操作。linux下find命令提供了相當多的查詢條件,功能很強大。由於find具有強大的功能,所以它的選項也很多,其中大部分選項都值得我們花時間來了解一下。即使系統中含有網路檔案系統 nfs find命令在該檔案系統中同樣有效,只你具有相應的...