You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
334 B
18 lines
334 B
#!/bin/sh |
|
|
|
# determine Java CLASSPATH |
|
classpath="" |
|
for jar in @l_prefix@/lib/sqlshell/*.jar; do |
|
if [ ".$classpath" = . ]; then |
|
classpath="$jar" |
|
else |
|
classpath="$classpath:$jar" |
|
fi |
|
done |
|
|
|
# run program |
|
exec @l_prefix@/bin/java \ |
|
-cp "$classpath" \ |
|
org.clapper.sqlshell.tool.Tool \ |
|
${1+"$@"} |
|
|
|
|