Skip to content

Instantly share code, notes, and snippets.

@sashka
Created July 21, 2019 19:55
Show Gist options
  • Save sashka/3ebaaf9379f7b7873379ff9773da5ad6 to your computer and use it in GitHub Desktop.
Save sashka/3ebaaf9379f7b7873379ff9773da5ad6 to your computer and use it in GitHub Desktop.
#!/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