Skip to content

Instantly share code, notes, and snippets.

@RafahCSilva
Last active January 18, 2022 05:56
Show Gist options
  • Select an option

  • Save RafahCSilva/cc9cf029c9e5b680d52bc8766a3fe62b to your computer and use it in GitHub Desktop.

Select an option

Save RafahCSilva/cc9cf029c9e5b680d52bc8766a3fe62b to your computer and use it in GitHub Desktop.
Clear All Caches
#!/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