From af612d8ee36682ef89e0fed7e1e6ce1a12935010 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 1 Feb 2022 15:00:47 -0300 Subject: [PATCH] Remove first newline in usePlainTextMenu() --- scripts/common.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/common.sh b/scripts/common.sh index 7af5f18..fd45d39 100755 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -104,8 +104,7 @@ usePlainText() { --yesno) yesno=true ;; esac done - str="${2:2}" - printf "$str\n" + printf "${2:2}\n" if [ $inputbox = true ]; then printLine && printf "\n" read -r readVar @@ -134,7 +133,7 @@ usePlainText() { usePlainTextMenu() { clear - shift; printf "$1\n"; shift; shift + shift; printf "${1:2}\n"; shift; shift local i=1; for item in "$@"; do echo "$item" | grep -qE '[0-9]+' && continue printf '%s\n' "$i) $item"