Mercurial Hosting > luan
view scripts/install.sh @ 1540:79f67662d3e7
delete next_id
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 13 Sep 2020 15:32:51 -0600 |
parents | d80395468b4e |
children | 39d2be9784ab |
line wrap: on
line source
set -e cd `dirname $0` mkdir -p /usr/local/bin cat >/usr/local/bin/luan <<End for i in `pwd`/jars/* ; do CLASSPATH=\$CLASSPATH:\$i ; done java -classpath \$CLASSPATH luan.Luan "\$@" End chmod +x /usr/local/bin/luan echo "the command 'luan' has been installed"