码迷,mamicode.com
首页 > 系统相关 > 详细

Linux下删除当前目录及子目录下的所有.txt文件

时间:2021-06-05 17:53:08      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:rgb   lin   文件   其它   特定   name   log   它的   子目录   

因为某种应用场景我需要将特定目录下的txt文件进行清理,核心命令如下:

find 目录 -name *.txt -type f -print -exec rm -rf {} \;

例如:

find /home/tech/data_log -name *.txt -type f -print -exec rm -rf {} \;

这样就能将data_log目录下的所有txt进行删除。当然了,不仅仅是txt文件,还可以是其它的文件。

Linux下删除当前目录及子目录下的所有.txt文件

标签:rgb   lin   文件   其它   特定   name   log   它的   子目录   

原文地址:https://www.cnblogs.com/youcong/p/14851643.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!