标签: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文件,还可以是其它的文件。
标签:rgb lin 文件 其它 特定 name log 它的 子目录
原文地址:https://www.cnblogs.com/youcong/p/14851643.html