Files
dotfiles/bin/clean-cache

29 lines
593 B
Bash
Executable File

#! /bin/bash
args=("$@")
usage() {
echo "Clean Cache utility: clean-cache [OPTIONS]"
echo
echo " --npm cleans npm cache by running 'npm cache clean -f'"
echo " --yarn cleans yarn cache by running 'yarn cache clean'"
echo " --yay clean yay cache by simply deleting ~/.cache/yay content"
}
if [ $# -eq 0 ] ; then
usage
exit
fi
if [[ "${args[@]}" =~ "--npm" ]] ; then
npm cache clean -f >> /dev/null 2>> /dev/null
fi
if [[ "${args[@]}" =~ "--yarn" ]] ; then
yarn cache clean >> /dev/null 2>> /dev/null
fi
if [[ "${args[@]}" =~ "--yay" ]] ; then
rm -rf ~/.cache/yay/*
fi