"rsjay1976 ." <[email protected]> writes: > Thanks Bryan > I tried both with and without $, but got the same results.As an FYI, I > am running cygwin on windows 7 pc with SUN JRE 1.6.0_14 version.
Hi Jayaram, In addition to removing the $, I think you need to have double quotes around the classpath, since unquoted semicolons have a special meaning in cygwin's shell. Maybe you also need to replace "set" with "export". So something like set CLASSPATH="C:/Derby/trunk/...." or export CLASSPATH="C:/Derby/trunk/...." might work better. > With Regards > Jayaram > > On Mon, Dec 30, 2013 at 8:16 PM, Bryan Pendleton > <[email protected]> wrote: > > jayaram@ADMINIB-0FLD7HA /cygdrive/c/derby/trunk > $ set > > $CLASSPATH=C:/Derby/trunk/tools/java/jakarta-oro-2.0.8.jar;C:/Derby/trunk/jars/sane/derbyTesting. > > jar;C:/Derby/trunk/jars/sane/derbyrun.jar;C:/Derby/trunk/tools/java/junit. > jar > > > Hi Jayaram, > > Make sure that line starts: > > set CLASSPATH=... > > not > > set $CLASSPATH=... > > thanks, > > bryan > > >
