Mercurial Hosting > luan
view scripts/install.sh @ 1709:6378d261136e
rm postgres backups
author | Vadim Filimonov <fffilimonov@yandex.ru> |
---|---|
date | Tue, 05 Jul 2022 13:37:05 +0300 |
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"