Remove first newline in usePlainTextMenu()
This commit is contained in:
parent
6cf2f40f92
commit
af612d8ee3
|
@ -104,8 +104,7 @@ usePlainText() {
|
||||||
--yesno) yesno=true ;;
|
--yesno) yesno=true ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
str="${2:2}"
|
printf "${2:2}\n"
|
||||||
printf "$str\n"
|
|
||||||
if [ $inputbox = true ]; then
|
if [ $inputbox = true ]; then
|
||||||
printLine && printf "\n"
|
printLine && printf "\n"
|
||||||
read -r readVar
|
read -r readVar
|
||||||
|
@ -134,7 +133,7 @@ usePlainText() {
|
||||||
|
|
||||||
usePlainTextMenu() {
|
usePlainTextMenu() {
|
||||||
clear
|
clear
|
||||||
shift; printf "$1\n"; shift; shift
|
shift; printf "${1:2}\n"; shift; shift
|
||||||
local i=1; for item in "$@"; do
|
local i=1; for item in "$@"; do
|
||||||
echo "$item" | grep -qE '[0-9]+' && continue
|
echo "$item" | grep -qE '[0-9]+' && continue
|
||||||
printf '%s\n' "$i) $item"
|
printf '%s\n' "$i) $item"
|
||||||
|
|
Loading…
Reference in New Issue