Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove all the svn files in all the macosx directories

Tags:

file

macos

svn

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

like image 597
itsme Avatar asked Oct 18 '25 11:10

itsme


1 Answers

You can use find to recursively locate and delete Subversion metadata folders:

find . -name .svn -exec rm -rf '{}' +
like image 123
bta Avatar answered Oct 21 '25 09:10

bta