Mercurial Hosting > luan
view scripts/install.sh @ 1824:92860f763715
smtpcorp change
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Mon, 19 Aug 2024 19:34:24 -0400 |
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"