//删除文件夹的常用方式1 . find ./ -type d -exec rm -rf [] +2.for f in `ls -l`; do if [ -d $f ]; then rm -rf $f; fi; done;