I would like to run a command to remove all the .svn files in my macosx.
Is it possible or is better to remove them just from directory by directory?
How can i do that?
thx
You can use find
to recursively locate and delete Subversion metadata folders:
find . -name .svn -exec rm -rf '{}' +
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With