Last active
January 18, 2022 05:56
-
-
Save RafahCSilva/cc9cf029c9e5b680d52bc8766a3fe62b to your computer and use it in GitHub Desktop.
Clear All Caches
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 "COMPOSER..." | |
| composer cc | |
| echo "NPM..." | |
| sudo npm cache rm --force | |
| echo "YARN..." | |
| yarn cache clean | |
| echo "NVM..." | |
| nvm cache clear | |
| echo "BREW..." | |
| brew cleanup | |
| rm -rf "$(brew --cache)" | |
| echo "VAGRANT_BOX..." | |
| vagrant box list | cut -f 1 -d ' ' | xargs -L 1 vagrant box remove -f --all | |
| # https://github.com/voidcosmos/npkill | |
| echo "DELETE os NODE/NPM node_modules com 'npx npkill'" | |
| # https://github.com/tuqqu/killposer | |
| echo "DELETE os PHP/Composer vendors com 'killposer'" | |
| # ~/killposer/vendor/bin/killposer -p ~/www |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment