nomsu/nomsu
Bruce Hill 328f5cd3bb Updated Makefile to copy over compatibility and tools directories, and
updated launcher script to list installed nomsu versions.
2018-07-18 01:42:46 -07:00

27 lines
681 B
Bash
Executable File

#!/bin/bash
while getopts ':V:L' flag; do
case "${flag}" in
V) VERSION="${OPTARG/./\.}\\b" ;;
L) LIST="YES" ;;
esac
done
if [[ $VERSION ]]; then
candidates=$(ls $(dirname $BASH_SOURCE) | grep "^nomsu$VERSION[0-9.]*$")
else
candidates=$(ls $(dirname $BASH_SOURCE) | grep "^nomsu[0-9.]\+$")
fi
if [[ $LIST ]]; then
echo "$candidates"
exit
fi
if [[ $candidates ]]; then
eval $(dirname $BASH_SOURCE)/$(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