From cb6578c0cf98fad13f7f8723b6029afc57c2af11 Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Fri, 15 Dec 2023 10:25:43 -0600 Subject: [PATCH] Update nodemgmt-scripts.sh --- nodemgmt-scripts.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nodemgmt-scripts.sh b/nodemgmt-scripts.sh index be7587af..cadcfc35 100755 --- a/nodemgmt-scripts.sh +++ b/nodemgmt-scripts.sh @@ -570,7 +570,8 @@ RUN_COMMAND(){ echo -e "${idsST[Bold]}"; DIVIDER echo -en "${idsCL[Yellow]} ${NM_NODETYPES[$NTYPE]}-Nodes to run command { \`" for i in {1..14}; do - [ "${!i}" != "" ] && echo -en "${!i} " + [ "${i}" != "1" ] && [ "${!i}" != "" ] && echo -en " " + [ "${!i}" != "" ] && echo -en "${!i}" done # "${1} ${2} ${3} ${4} ${5} ${6} ${7} ${8} ${9} ${10} ${11} ${12} ${13} ${14}" echo -e "\` }${idsCL[Default]}"