find . -name "*.zip" -type ffind . -name "*.txt" -type f -print -exec rm -rf {} \; -print -exec rm -rf {} \; . : 表示在当前目录下 -name "*.zip" 表示查找所有后缀为txt的文件 -type f 表示文件类型为一般正规文件 -print 表示将查询结果打印到屏幕上 -exec command
标签:文件,name,exec,某类,子目录,print,txt,type From: https://www.cnblogs.com/tester-yu/p/16788126.html