view scripts/install.sh @ 1507:c8f4867fd083

remove unused file
author Vadim Filimonov <fffilimonov@yandex.ru>
date Sat, 16 May 2020 12:33:41 +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"