Replace ifs with case

This commit is contained in:
Santiago Lo Coco 2022-01-19 18:07:29 -03:00
parent 3b6b3c20f1
commit e0826f18ac
1 changed files with 8 additions and 7 deletions

View File

@ -92,19 +92,20 @@ useWhiptail() {
}
usePlainText() {
inputbox=false; infobox=false; yesnobox=false
inputbox=false; infobox=false; yesno=false
for item in "$@"; do
# TODO: Use case
[ "$item" = "--title" ] && shift && shift
[ "$item" = "--inputbox" ] && inputbox=true
[ "$item" = "--infobox" ] && infobox=true
[ "$item" = "--yesno" ] && yesnobox=true
case $item in
--title) shift && shift ;;
--inputbox) inputbox=true ;;
--infobox) infobox=true ;;
--yesno) yesno=true ;;
esac
done
printf "$2\n"
if [ $inputbox = true ]; then
read -r readVar
printf "$readVar" 1>&2
elif [ $yesnobox = true ]; then
elif [ $yesno = true ]; then
printf "[y/n] "
read -n 1 -r readVar
return $([[ "$readVar" =~ ^[Yy]$ ]])