Mercurial Hosting > luan
view scripts/install.sh @ 1829:0eb615de1f80
add mail helo
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 22 Sep 2024 20:05:54 -0600 |
parents | 36dfc31fd607 |
children |
line wrap: on
line source
#!/bin/bash set -e cd `dirname $0` mkdir -p /usr/local/bin cat >/usr/local/bin/luan <<End #!/bin/bash for i in `pwd`/jars/* ; do CLASSPATH=\$CLASSPATH:\$i ; done CLASSPATH=$(echo -n $CLASSPATH | sed 's/^://') java -classpath \$CLASSPATH luan.Luan "\$@" End chmod +x /usr/local/bin/luan echo "the command 'luan' has been installed"