Skip to content

Instantly share code, notes, and snippets.

@wcoder
Last active December 11, 2018 14:19
Show Gist options
  • Save wcoder/9b8b181821fbdf0f6cbb7e229740e133 to your computer and use it in GitHub Desktop.
Save wcoder/9b8b181821fbdf0f6cbb7e229740e133 to your computer and use it in GitHub Desktop.
Single line bash script for remove `bin` and `obj` folders from .Net solution on macOS (Xamarin)
find -E . -regex ".*/(bin|obj)" -type d -exec rm -r "{}" \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment