Getting rid of build directories
I wanted to get rid of the “build” directories in my source folders before prepping my source folders for git, so I used the following command to get rid of them: find . -iname “build” -type d -print -execdir rm -R ‘{}’ \;