nomsu/nomsu
2018-06-23 18:26:27 -07:00

21 lines
602 B
Bash
Executable File

#!/bin/bash
while getopts ':V:' flag; do
case "${flag}" in
V) VERSION="${OPTARG/./\.}\\b" ;;
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 [[ $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