Mercurial Hosting > hghosting
annotate luan/install.sh @ 19:a90e510ccc4f
fix restart/move logs
| author | Vadim Filimonov <fffilimonov@yandex.ru> |
|---|---|
| date | Mon, 05 Aug 2024 11:29:06 +0300 |
| 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" |
