Fix usePlainTextList() SC warnings and update printHelp()

This commit is contained in:
Santiago Lo Coco 2022-02-17 00:59:52 -03:00
parent 83b9d6f02d
commit eba632092a
1 changed files with 5 additions and 4 deletions

View File

@ -82,7 +82,7 @@ printLine() {
printHelp() { printHelp() {
tput bold tput bold
tput setaf 3 tput setaf 3
printf '\n\n%s' "$1" echo -ne "\n\n$1"
tput sgr0 tput sgr0
printf '\n%s' "----------------------------------------" printf '\n%s' "----------------------------------------"
} }
@ -176,6 +176,7 @@ usePlainTextList() {
helpmsg="To select an element you must enter its number." helpmsg="To select an element you must enter its number."
helpmsg="${helpmsg} Also, you can deselect an item by re-entering its number." helpmsg="${helpmsg} Also, you can deselect an item by re-entering its number."
helpmsg="${helpmsg}\nTo finalize the selection press ENTER."
printHelp "$helpmsg" printHelp "$helpmsg"
printf '\n%s' "[1..$j] " printf '\n%s' "[1..$j] "
isNewline=false isNewline=false
@ -198,10 +199,10 @@ usePlainTextList() {
if [ $((i%3)) -eq 0 ]; then if [ $((i%3)) -eq 0 ]; then
printf '%s\n' "${selectedOptions[@]}" | grep -Fxq "${options[$j]}" printf '%s\n' "${selectedOptions[@]}" | grep -Fxq "${options[$j]}"
retVal=$? retVal=$?
if [ $((++j)) -eq $readVar ] && [ $retVal -eq 0 ]; then if [ $((++j)) -eq "$readVar" ] && [ $retVal -eq 0 ]; then
selectedOptions=(${selectedOptions[@]//${options[$((readVar-1))]}/}) IFS=' ' read -r -a selectedOptions <<< "${selectedOptions[@]//${options[$((readVar-1))]}/}"
printf '%s\n' "$j) $item" printf '%s\n' "$j) $item"
elif [ $j -eq $readVar ] || [ $retVal -eq 0 ]; then elif [ "$j" -eq "$readVar" ] || [ $retVal -eq 0 ]; then
tput setab 2 tput setab 2
printf '%s\n' "$j) $item" printf '%s\n' "$j) $item"
[ $retVal -ne 0 ] && selectedOptions+=("${options[$((readVar-1))]}") [ $retVal -ne 0 ] && selectedOptions+=("${options[$((readVar-1))]}")