摘要: 实现查找并删除目录或文件 #方式1 find . -type f -delete或find . -type f -exec rm -f {} \; #方式2 find . -type f | xargs rm -f #方式3 rm-f `find . -type f` find . -name '* 阅读全文
posted @ 2022-04-25 17:09 weslie 阅读(35) 评论(0) 推荐(0) 编辑