Skip to content

Instantly share code, notes, and snippets.

@jsramraj
Last active July 23, 2020 07:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jsramraj/494cc2aabc68078e5ab93764fcc19f34 to your computer and use it in GitHub Desktop.
Save jsramraj/494cc2aabc68078e5ab93764fcc19f34 to your computer and use it in GitHub Desktop.
Delete bin and obj folders

Quite often you may need to clear the obj and bin folders in the Mac when you work on a xamarin project.

The following command will do that for you.

It will search for all the folders named obj and bin and delete them.

find . -type d \( -name "obj" -o -name "bin" \) -exec rm -rf {} \;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment