Objective To delete all .svn folders from all sub folders recursively. Run the following command from terminal Command explanation: find – First portion of the command will search all .svn folder recursively. print – Second portion of the command will print the list of folders retrieved from first portion. rm – Third portion of the […]