nomsu/nomsu
Bruce Hill 0d4f2e45bc Updated launcher script to use find istead of ls and grep, and to
use "$(...)" instead of eval "$(...)", as per best practice
recommendations.
2018-07-22 15:45:02 -07:00

27 lines
658 B
Bash
Executable File

#!/bin/bash
while getopts ':V:L' flag; do
case "${flag}" in
V) VERSION=$OPTARG ;;
L) LIST="YES" ;;
esac
done
if [[ $VERSION ]]; then
candidates=$(find $(dirname $BASH_SOURCE) -maxdepth 1 -name "nomsu$VERSION*")
else
candidates=$(find $(dirname $BASH_SOURCE) -maxdepth 1 -name "nomsu[0-9]*")
fi
if [[ $LIST ]]; then
echo "$candidates"
exit
fi
if [[ $candidates ]]; then
"$(echo "$candidates" | sort -V | tail -n 1)" "$@"
else
echo "Failed to find a Nomsu version matching the regex: \"nomsu$VERSION\""
echo "The versions available are:"
ls $(dirname $BASH_SOURCE) | grep "^nomsu[0-9.]\+$" | sed 's/^/ * /'
fi