mirror of
https://github.com/alexanderepstein/Bash-Snippets
synced 2018-11-08 02:59:35 +01:00
123 lines
2.7 KiB
Bash
Executable file
123 lines
2.7 KiB
Bash
Executable file
#!/bin/bash
|
|
# Author: Alexander Epstein https://github.com/alexanderepstein
|
|
currentVersion="1.2.0"
|
|
|
|
if [[ $# == 0 ]]; then
|
|
|
|
echo -n "Do you wish to install currency [Y/n]: "
|
|
read -r answer
|
|
if [[ "$answer" == "Y" || "$answer" == "y" ]] ;then
|
|
cd currency || exit 1
|
|
./install.sh || exit 1
|
|
cd .. || exit 1
|
|
fi
|
|
|
|
unset answer
|
|
echo -n "Do you wish to install stocks [Y/n]: "
|
|
read -r answer
|
|
if [[ "$answer" == "Y" || "$answer" == "y" ]] ;then
|
|
cd stocks || exit 1
|
|
./install.sh
|
|
cd .. || exit 1
|
|
|
|
fi
|
|
|
|
unset answer
|
|
echo -n "Do you wish to install weather [Y/n]: "
|
|
read -r answer
|
|
if [[ "$answer" == "Y" || "$answer" == "y" ]] ;then
|
|
cd weather || exit 1
|
|
./install.sh
|
|
cd .. || exit 1
|
|
|
|
fi
|
|
|
|
unset answer
|
|
echo -n "Do you wish to install crypt [Y/n]: "
|
|
read -r answer
|
|
if [[ "$answer" == "Y" || "$answer" == "y" ]] ;then
|
|
cd crypt || exit 1
|
|
./install.sh
|
|
cd .. || exit 1
|
|
|
|
fi
|
|
|
|
unset answer
|
|
echo -n "Do you wish to install movies [Y/n]: "
|
|
read -r answer
|
|
if [[ "$answer" == "Y" || "$answer" == "y" ]] ;then
|
|
cd movies || exit 1
|
|
./install.sh
|
|
cd .. || exit 1
|
|
fi
|
|
|
|
|
|
fi
|
|
|
|
if [[ $1 == "currency" ]];then
|
|
cd currency || exit 1
|
|
./install.sh || exit 1
|
|
cd .. || exit 1
|
|
elif [[ $1 == "stocks" ]]; then
|
|
cd stocks || exit 1
|
|
./install.sh || exit 1
|
|
cd .. || exit 1
|
|
elif [[ $1 == "weather" ]]; then
|
|
cd weather || exit 1
|
|
./install.sh || exit 1
|
|
cd .. || exit 1
|
|
elif [[ $1 == "crypt" ]]; then
|
|
cd crypt || exit 1
|
|
./install.sh || exit 1
|
|
cd .. || exit 1
|
|
elif [[ $1 == "movies" ]]; then
|
|
cd movies || exit 1
|
|
./install.sh || exit 1
|
|
cd .. || exit 1
|
|
elif [[ $1 == "all" ]];then
|
|
cd currency || exit 1
|
|
./install.sh || exit 1
|
|
cd .. || exit 1
|
|
cd stocks || exit 1
|
|
./install.sh || exit 1
|
|
cd .. || exit 1
|
|
cd weather || exit 1
|
|
./install.sh || exit 1
|
|
cd .. || exit 1
|
|
cd crypt || exit 1
|
|
./install.sh || exit 1
|
|
cd .. || exit 1
|
|
cd movies || exit 1
|
|
./install.sh || exit 1
|
|
cd .. || exit 1
|
|
elif [[ $1 == "update" ]]; then
|
|
echo "Updating scripts..."
|
|
if [[ -f /usr/local/bin/currency ]];then
|
|
cd currency || exit 1
|
|
./install.sh || exit 1
|
|
cd .. || exit 1
|
|
fi
|
|
if [[ -f /usr/local/bin/stocks ]];then
|
|
cd stocks || exit 1
|
|
./install.sh || exit 1
|
|
cd .. || exit 1
|
|
fi
|
|
if [[ -f /usr/local/bin/weather ]];then
|
|
cd weather || exit 1
|
|
./install.sh || exit 1
|
|
cd .. || exit 1
|
|
fi
|
|
if [[ -f /usr/local/bin/crypt ]];then
|
|
cd crypt || exit 1
|
|
./install.sh || exit 1
|
|
cd .. || exit 1
|
|
fi
|
|
if [[ -f /usr/local/bin/movies ]];then
|
|
cd movies || exit 1
|
|
./install.sh || exit 1
|
|
cd .. || exit 1
|
|
fi
|
|
fi
|
|
|
|
echo "Bash Snippets version $currentVersion"
|
|
echo "https://github.com/alexanderepstein/Bash-Snippets"
|