递归删除目录|文件

satuo20 1年前 ⋅ 224 阅读

递归删除目录|文件

  • 查找当前目录及目录中的文件并删除之 find . -name "111" -exec rm -f {} ;

.project org.eclipse.m2e.core.prefs org.eclipse.jdt.core.prefs org.eclipse.core.resources.prefs .classpath .eclipse

find . -name "111" -exec rm -f {} ; find . -name ".project" -exec rm -f {} ; find . -name "org.eclipse.m2e.core.prefs" -exec rm -f {} ; find . -name "org.eclipse.jdt.core.prefs" -exec rm -f {} ; find . -name "org.eclipse.core.resources.prefs" -exec rm -f {} ; find . -name ".classpath" -exec rm -f {} ; find . -name ".eclipse" -exec rm -f {} ; find . -name ".settings" -exec rm -rf {} ;


全部评论: 0

    我有话说: