Ok, this works on windows. Java application is up and running
javac -classpath .;ojdbc14.jar -g foo.java java -classpath .;ojdbc14.jar foo
However, when I do the same on Unix, I get this error: ojdbc14.jar: not found
What am I doing wrong? I know ";" tells my shell that ojdbc14.jar is a new command, but I'm not sure how to fix it.
source share