case statements and line breaks

This commit is contained in:
Stefen Auris 2018-04-18 11:25:49 -04:00
parent f6d2ebaf61
commit fb99e89924

17
deps.sh
View file

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
#These are the base dependencies for any install
echo "installing base dependencies"
@ -14,14 +14,15 @@ sudo apt-get -my install git \
curl \
# byobu \
read -p "Does this system need ssh access?" -n 1 -r
if [[ ! $REPLY =~ ^[Yy]$ ]]
then sudo apt-get install openssh-server
read -n1 -p $'Does this system need ssh access?\n' REPLY
if [[ $REPLY == [Yy] ]]; then
sudo apt-get install openssh-server
fi
read -p "Does this system have a GUI?" -n 1 -r
if [[ ! $REPLY = [Yy]$ ]]
then sudo apt-get install emacs
else sudo apt-get install emacs-nox
read -n1 -p $'\nDoes this system have a GUI?\n' REPLY
if [[ $REPLY == [Yy] ]]; then
sudo apt-get install emacs
else
sudo apt-get install emacs-nox
fi
#echo "enabling byobu"