Linux shell删除某类文件


问题描述

需要删除目录中的某类文件

解决方案

删除当前目录下所有.xml文件

find "$DIR_PATH" -name "*.xml" -type f -delete

-name 表示文件名称
-type 表示类型: f表示文件,d表示目录


参考文档


Author: Itaken
Reprint policy: All articles in this blog are used except for special statements CC BY 4.0 reprint polocy. If reproduced, please indicate source Itaken !
  TOC目录