The ';' is being used to separate commands. com/XML* is being used as a
separate command. Try backslashing the ';'.
Also, java won't recognize Cygwin mounts and symlinks if you're using them.
Noel
|+--->
|| |
|| Nandi
Nandika,
Your problem is the semi-colon after $CLASSPATH. In cygwin (gnu) it
separates commands, so the shell thinks you are running *two* commands.
First it tries
java -cp $CLASSPATH
which gives the error message. Then the shell tries to execute
com/XML
which obviously does not exist.
T