Last active
January 20, 2026 11:45
-
-
Save ivanbarlog/d9551ea0a04e3e52d55cbc3999c87f35 to your computer and use it in GitHub Desktop.
Shell scripts
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 | |
| sudo rm -rf $(xcode-select --print-path) | |
| xcode-select --install |
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 | |
| find . -name "node_modules" -type d -prune -print | xargs du -chs | |
| find . -name "cdk.out" -type d -prune -print | xargs du -chs | |
| #find . -name 'node_modules' -type d -prune -print -exec rm -rf '{}' \; | |
| #find . -name 'cdk.out' -type d -prune -print -exec rm -rf '{}' \; | |
| echo https://dev.to/trilon/how-to-delete-all-nodemodules-folders-on-your-machine-43dh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment