redondos 1180458576 learn Remove all .svn directories: find . -type d -name .svn -exec rm -rf {} \; Remove everything else: find -path '*/.svn' -prune -o -exec rm -rf {} \; See !find to understand how the expressions work. redondos 1180459324 forget redondos 1180459332 learn To remove all .svn directories, first check `svn --help export', if you're still convinced: find . -type d -name .svn -exec rm -rf {} \; One way of removing everything else is: find -path '*/.svn' -prune -o -exec rm -rf {} \; See !find to understand how the expressions work. lhunath 1205670992 forget lhunath 1205671293 learn If you're considdering removing .svn directories, first read "svn --help export". If you're still convinced: find . -depth -name .svn -exec rm -rf {} \; To remove everything but the svn directories: find . -depth -name .svn -prune -o -exec rm -rf {} \; ferret 1205672889 forget ferret 1205672896 learn If you're considdering removing .svn directories, first read "svn --help export". If you're still convinced: find . -depth -name .svn -exec rm -rf {} \; To remove everything but the svn directories: find . -name .svn -prune -o -exec rm -rf {} \; Samus_ 1241202018 forget Samus_ 1241202038 learn If you're considering removing .svn directories, first read "svn --help export". If you're still convinced: find . -depth -name .svn -exec rm -rf {} \; To remove everything but the svn directories: find . -name .svn -prune -o -exec rm -rf {} \; koala_man 1426532728 forget koala_man 1426532745 learn If you're considering removing .svn directories, first read "svn --help export". If you're not convinced, find . -name .svn -prune -exec rm -rf {} +