comparison luan/install.sh @ 0:dfc36e7ed22c

init
author Vadim Filimonov <fffilimonov@yandex.ru>
date Thu, 12 May 2022 13:51:59 +0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:dfc36e7ed22c
1 set -e
2
3 cd `dirname $0`
4
5 mkdir -p /usr/local/bin
6
7 cat >/usr/local/bin/luan <<End
8 for i in `pwd`/jars/* ; do CLASSPATH=\$CLASSPATH:\$i ; done
9
10 java -classpath \$CLASSPATH luan.Luan "\$@"
11 End
12
13 chmod +x /usr/local/bin/luan
14
15 echo "the command 'luan' has been installed"