2016年8月18日
摘要: find . -name "*.bms" -type f -print -exec rm -rf {} \; . : 表示在当前目录下 -name "*.txt" 表示查找所有后缀为txt的文件 -type f 表示文件类型为一般正规文件 -print 表示将查询结果打印到屏幕上 -exec com 阅读全文
posted @ 2016-08-18 14:58 咖啡牛奶1/3 阅读(301) 评论(0) 推荐(0) 编辑