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.
13 lines
504 B
13 lines
504 B
#!/bin/sh |
|
|
|
classpath="`echo @l_prefix@/lib/jidgen/jidgen.jar`" |
|
classpath="$classpath:`echo @l_prefix@/lib/commons/commons-cli-[0-9]*.jar`" |
|
classpath="$classpath:`echo @l_prefix@/lib/commons/commons-logging-[0-9]*.jar`" |
|
classpath="$classpath:`echo @l_prefix@/lib/commons/commons-logging-adapters-[0-9]*.jar`" |
|
classpath="$classpath:`echo @l_prefix@/lib/commons/commons-logging-api-[0-9]*.jar`" |
|
|
|
exec @l_prefix@/bin/java \ |
|
-cp "$classpath" \ |
|
de.rrze.idmone.utils.jidgen.IdGenerator \ |
|
${1+"$@"} |
|
|
|
|