Skip to content

Instantly share code, notes, and snippets.

@jkereako
Created December 7, 2018 16:24
Show Gist options
  • Save jkereako/bc8710e9c0695e2dc372057437e8208c to your computer and use it in GitHub Desktop.
Save jkereako/bc8710e9c0695e2dc372057437e8208c to your computer and use it in GitHub Desktop.
Deletes bin and obj directories as created by VisualStudio
find . -iname "bin" -o -iname "obj" | xargs rm -rf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment