From a2504dcd7ea0f8802e68745d058c68b65072f90c Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Sat, 12 Dec 2020 12:10:13 -0500 Subject: [PATCH] Improved the help function. --- audiogame-manager.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audiogame-manager.sh b/audiogame-manager.sh index caf6c2e..e1ea3b8 100755 --- a/audiogame-manager.sh +++ b/audiogame-manager.sh @@ -202,7 +202,7 @@ help() { echo -e "Usage:\n" echo "With no arguments, open the game launcher." for i in "${!command[@]}" ; do - echo "-${i}: ${command[${i}]}" + echo "-${i/:/ }: ${command[${i}]}" done | sort exit 0 }