Mercurial Hosting > hghosting
view luan/install.sh @ 16:50a1fe272c10
more security
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 01 Oct 2023 21:36:34 -0600 |
parents | dfc36e7ed22c |
children | b14073ab9d07 |
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"