Intentando dar una opción a los usuarios de un instalador para que elijan "Desarrollo" o "Estable". De forma predeterminada, el instalador ejecuta "git checkout 1.1.0", pero estoy convirtiendo 1.1.0 $GIT_VERSION
e intentando crear una forma limpia de configurarlo al principio.
Intentando configurar $GIT_VERSION
en master
o 1.1.0
con la opción 1, 2 o 3 (se abandona 3). Tengo un comienzo difícil de lo que estoy tratando de hacer...
PS3='Do you want to install Lastest Stable or Latest Developement: '
options=("Stable" "Developement" "Quit")
select GIT_VERSION in "${options[@]}"
do
case $GIT_VERSION in
"Stable")
$GIT_VERSION=1.1.0
echo "Installing 1.1.0..."
;;
"Developement")
$GIT_VERSION=master
echo "Installing latest developement version..."
;;
"Quit")
break
;;
*) echo invalid option;;
esac
done
Respuesta1
Probablemente haría algo como
#! /bin/bash
names=(Stable Developement)
versions=(master 1.1.0)
select option in "${names[@]}" Quit ; do
if (( REPLY > 0 && REPLY <= 1 + ${#names[@]} )) ; then
if [[ $option != Quit ]] ; then
git checkout ${versions[REPLY-1]}
fi
exit
else
echo Invalid reply.
fi
done