Browse Source

av

pull/3428/head
Daniel Gibbs 4 years ago
parent
commit
b6f8b48933
  1. 12
      lgsm/functions/command_dev_query_raw.sh

12
lgsm/functions/command_dev_query_raw.sh

@ -164,8 +164,16 @@ fi
echo -e ""
echo -e "${lightgreen}SS Output${default}"
echo -e "================================="
executableshort="$(echo "${executable//.\/}" | cut -c -15)"
ss -tupl | grep ${executableshort}
if [ "${shortname}" == "av" ]; then
echo -e "ss -tuplwn | grep AvorionServer"
echo -e ""
ss -tuplwn | grep AvorionServer
else
executableshort="$(echo "${executable//.\/}" | cut -c -15)"
echo -e "ss -tuplwn | grep ${executableshort}"
echo -e ""
ss -tuplwn | grep ${executableshort}
fi
echo -e ""
echo -e "${lightgreen}Query Port - Raw Output${default}"
echo -e "=================================================================="

Loading…
Cancel
Save