#!/bin/bash # Author: Alexander Epstein https://github.com/alexanderepstein declare -a tools=(currency stocks weather crypt movies taste short geo cheat ytview cloudup qrify) askUninstall() { if [[ -f /usr/local/bin/$1 ]];then echo -n "Do you wish to uninstall $1 [Y/n]: " read -r answer if [[ "$answer" == "Y" || "$answer" == "y" ]] ;then cd $1 || return 1 chmod a+x uninstall.sh || return 1 ./uninstall.sh || return 1 cd .. || return 1 fi unset answer fi } for tool in "${tools[@]}" do askUninstall $tool || exit 1 done