comparison scripts/install.sh @ 1921:2364fc43037a

better spell check
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 20 Apr 2025 12:47:41 -0600
parents 08d650b31a80
children 0156fe64a610
comparison
equal deleted inserted replaced
1920:5b15b33c2d9c 1921:2364fc43037a
10 #!/bin/bash 10 #!/bin/bash
11 11
12 for i in `pwd`/jars/* ; do CLASSPATH=\$CLASSPATH:\$i ; done 12 for i in `pwd`/jars/* ; do CLASSPATH=\$CLASSPATH:\$i ; done
13 CLASSPATH=\$(echo -n \$CLASSPATH | sed 's/^://') 13 CLASSPATH=\$(echo -n \$CLASSPATH | sed 's/^://')
14 14
15 export LUAN_DICTS=`pwd`/dictionaries/
16
15 java -classpath \$CLASSPATH luan.Luan "\$@" 17 java -classpath \$CLASSPATH luan.Luan "\$@"
16 End 18 End
17 19
18 chmod +x /usr/local/bin/luan 20 chmod +x /usr/local/bin/luan
19 21