From 3f784c5d9db630a0d6ee595f5a7ca19428c09049 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Wed, 19 Jan 2022 18:24:23 -0300 Subject: [PATCH] Update ...Plain...() functions --- scripts/common.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/scripts/common.sh b/scripts/common.sh index 3218047..0e90441 100755 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -92,6 +92,7 @@ useWhiptail() { } usePlainText() { + clear inputbox=false; infobox=false; passwordbox=false; yesno=false for item in "$@"; do case $item in @@ -110,13 +111,14 @@ usePlainText() { read -r -s readVar printf "$readVar" 1>&2 elif [ $yesno = true ]; then - printf "[y/n] " - read -n 1 -r readVar + printf '\n%s' "[y/n] " + read -n 1 -r -s readVar return $([[ "$readVar" =~ ^[Yy]$ ]]) fi } usePlainTextMenu() { + clear menuOptions=(); shift printf "$1\n" shift; shift @@ -125,7 +127,8 @@ usePlainTextMenu() { printf '%s\n' "$i) $item" ((i++)) done - read -n 1 -r readVar + printf '\n%s' "[1..$((i-1))] " + read -n 1 -r -s readVar printf "$readVar" 1>&2 }