0

I can't seem to get this to work from a unix terminal

java -cp a.jar;b.jar ...

I know that this works:

java -c "./*" ...

But python doesn't know how to recognize and recover the output of a wildcard statement. Is there a way to explicitly state the class path jars in a unix terminal?

1

1 Answer 1

1

You are using the wrong path separator for unix based java.

Try

java -cp a.jar:b.jar ...
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.