Browse Source

Grep Ark SessionName

pull/1243/head
UltimateByte 8 years ago
committed by GitHub
parent
commit
e4b0054f63
  1. 2
      lgsm/functions/info_config.sh

2
lgsm/functions/info_config.sh

@ -43,7 +43,7 @@ fn_info_config_ark(){
if [ ! -f "${servercfgfullpath}" ]; then
servername="${unavailable}"
else
servername=$(grep "Name" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/SessionName//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
servername=$(grep "SessionName" "${servercfgfullpath}" | sed -e 's/^[ \t]*//g' -e '/^--/d' -e 's/SessionName//g' | tr -d '=\";,:' | sed -e 's/^[ \t]*//' -e 's/[ \t]*$//')
# Not Set
servername=${servername:-"NOT SET"}
fi

Loading…
Cancel
Save