[For .NET projects] Recursively find and delete bin, obj and packages directories
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Recursively find and delete "bin", "obj" and "packages" dirs | |
# Backup your code before using this script, I am not responsible for any data loss. Please use it wisely. | |
find . -iname "bin" -o -iname "obj" -o -iname "packages" | xargs rm -rf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment