Mercurial Hosting > hghosting
annotate luan/install.sh @ 1:92a0646e38b6
fix backup
author | fffilimonov |
---|---|
date | Thu, 12 May 2022 05:32:53 -0500 |
parents | dfc36e7ed22c |
children | b14073ab9d07 |
rev | line source |
---|---|
0 | 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" |