view scripts/install.sh @ 1701:077366d117bb

use local luan
author Vadim Filimonov <fffilimonov@yandex.ru>
date Tue, 28 Jun 2022 17:59:19 +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"