From 4a33084da9c535541da6da88332a1ae3a05399ec Mon Sep 17 00:00:00 2001 From: "Fred T. Hamster" Date: Wed, 8 Nov 2017 12:38:06 -0500 Subject: [PATCH] fixed port listing to sort numerically --- scripts/opensim/find_opensim_ports.sh | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/scripts/opensim/find_opensim_ports.sh b/scripts/opensim/find_opensim_ports.sh index 39c583e7..6ef74ada 100644 --- a/scripts/opensim/find_opensim_ports.sh +++ b/scripts/opensim/find_opensim_ports.sh @@ -1,12 +1,24 @@ #!/bin/bash + +source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh" + outfile="$(mktemp "$TMP/region_ports.XXXXXX")" -grep "InternalPort *= *[0-9][0-9]*" "$HOME/opensim/bin/Regions"/* | sed -e "s/.*= *\([0-9]*\).*/\1/" | sort &>$outfile -#echo all ports are: -#cat $outfile -#echo head -#head -1 $outfile -#echo tail -#tail -1 $outfile +grep "InternalPort *= *[0-9][0-9]*" "$HOME/opensim/bin/Regions"/* | sed -e "s/.*= *\([0-9]*\).*/\1/" | sort -g &>$outfile + +if [ ! -z "$DEBUG_FEISTY_MEOW" ]; then + sep + echo all ports are: + cat $outfile + sep + echo head + head -1 $outfile + sep + echo tail + tail -1 $outfile + sep +fi + echo "opensim ports range from $(head -1 $outfile) to $(tail -1 $outfile)" rm $outfile + -- 2.34.1