Bash-Snippets/install.sh

81 lines
1.7 KiB
Bash
Raw Normal View History

#!/bin/bash
# Author: Alexander Epstein https://github.com/alexanderepstein
currentVersion="1.0.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
fi
echo "Bash Snippets version $currentVersion"
echo "https://github.com/alexanderepstein/Bash-Snippets"