From 7aa91fc67af28d5d64b07c7b0ef101283530b45b Mon Sep 17 00:00:00 2001 From: GizMoCuz Date: Wed, 8 Jul 2020 16:36:50 +0200 Subject: [PATCH] Removed middle-dot in print function --- scripts/wireguard/qrcodeCONF.sh | 2 +- scripts/wireguard/removeCONF.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/wireguard/qrcodeCONF.sh b/scripts/wireguard/qrcodeCONF.sh index 2927da9..0000a69 100755 --- a/scripts/wireguard/qrcodeCONF.sh +++ b/scripts/wireguard/qrcodeCONF.sh @@ -40,7 +40,7 @@ if [ "${#CLIENTS_TO_SHOW[@]}" -eq 0 ]; then len=${#LIST[@]} COUNTER=1 while [ $COUNTER -le ${len} ]; do - printf "• [%0${#len}s] %s\r\n" ${COUNTER} ${LIST[(($COUNTER-1))]} + printf "[%0${#len}s] %s\r\n" ${COUNTER} ${LIST[(($COUNTER-1))]} ((COUNTER++)) done diff --git a/scripts/wireguard/removeCONF.sh b/scripts/wireguard/removeCONF.sh index 7a72328..5cd325c 100755 --- a/scripts/wireguard/removeCONF.sh +++ b/scripts/wireguard/removeCONF.sh @@ -48,7 +48,7 @@ if [ "${#CLIENTS_TO_REMOVE[@]}" -eq 0 ]; then len=${#LIST[@]} COUNTER=1 while [ $COUNTER -le ${len} ]; do - printf "• [%0${#len}s] %s\r\n" ${COUNTER} ${LIST[(($COUNTER-1))]} + printf "[%0${#len}s] %s\r\n" ${COUNTER} ${LIST[(($COUNTER-1))]} ((COUNTER++)) done