jython
command supports passing arguments through to the java
command... So:
jython -J-cp JAR1:JAR2
You can verify the resulting command by adding --print
switch:
jython -J-cp JAR1:JAR2 --print
The above will print out the actual java command instead of executing it.