Created
November 12, 2022 08:34
-
-
Save solrevdev/21eab06919c956b8448dad7fffcff698 to your computer and use it in GitHub Desktop.
Shell script to delete bin and obj folders
This file contains hidden or 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
| #!/usr/bin/env bash | |
| echo "Delete bin and obj folders in this folder and it's sub folders" | |
| find . -iname "bin" -print0 | xargs -0 rm -rf | |
| find . -iname "obj" -print0 | xargs -0 rm -rf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment