From 6cf2f40f9218a5121b3fa9cf7b5b3da94370c3f8 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 1 Feb 2022 14:59:41 -0300 Subject: [PATCH] Remove first newline in usePlainText() --- scripts/common.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/common.sh b/scripts/common.sh index 1b13ada..7af5f18 100755 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -104,7 +104,8 @@ usePlainText() { --yesno) yesno=true ;; esac done - printf "$2\n" + str="${2:2}" + printf "$str\n" if [ $inputbox = true ]; then printLine && printf "\n" read -r readVar