Created
July 21, 2019 19:55
-
-
Save sashka/3ebaaf9379f7b7873379ff9773da5ad6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# http://alloytools.org | |
# https://habr.com/ru/company/yandex/blog/457810/ | |
# https://www.hillelwayne.com/post/formally-specifying-uis/ | |
scriptdir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
libdir="$scriptdir"/lib | |
alloyjar="" | |
for jar in "$libdir"/alloy4.*.jar; do | |
alloyjar=$jar | |
done | |
java -jar "$alloyjar" "$@" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment