nomsu/nomsu

27 lines
658 B
Plaintext
Raw Normal View History

2018-06-23 18:26:18 -07:00
#!/bin/bash
while getopts ':V:L' flag; do
2018-06-23 18:26:18 -07:00
case "${flag}" in
V) VERSION=$OPTARG ;;
L) LIST="YES" ;;
2018-06-23 18:26:18 -07:00
esac
done
2018-06-23 18:26:18 -07:00
if [[ $VERSION ]]; then
candidates=$(find $(dirname $BASH_SOURCE) -maxdepth 1 -name "nomsu$VERSION*")
2018-06-23 18:26:18 -07:00
else
candidates=$(find $(dirname $BASH_SOURCE) -maxdepth 1 -name "nomsu[0-9]*")
2018-06-23 18:26:18 -07:00
fi
if [[ $LIST ]]; then
echo "$candidates"
exit
fi
2018-06-23 18:26:18 -07:00
if [[ $candidates ]]; then
"$(echo "$candidates" | sort -V | tail -n 1)" "$@"
else
2018-06-23 18:26:18 -07:00
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