From 331a18fc903288499a10a203b1214ac60bbffbff Mon Sep 17 00:00:00 2001 From: zyimm Date: Mon, 19 Feb 2024 11:31:58 +0800 Subject: [PATCH] =?UTF-8?q?:art:=20=E6=89=B9=E9=87=8F=E5=88=A0=E9=99=A4?= =?UTF-8?q?=E5=A4=A7=E9=87=8F=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _posts/Linux/command/batch_del_many_files.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/Linux/command/batch_del_many_files.md b/_posts/Linux/command/batch_del_many_files.md index 5870da4..70377f6 100644 --- a/_posts/Linux/command/batch_del_many_files.md +++ b/_posts/Linux/command/batch_del_many_files.md @@ -13,7 +13,7 @@ tags: 比如对tmp目下大量以xhprof为后缀名文件进行删除: ```sh -find ./ -type f -name "*.xhprof" -exec rm {} \ +find ./ -type f -name "*.xhprof" -exec rm {} \; ``` 1. find: 这是用于在文件系统中搜索文件和目录的命令。