On Wed, 14 Oct 1998 15:41:02 +0100, Danny Ayers wrote:

>Thanks (Ernst & Michael) for the replies - I should have included the
>following in my query :
>
>mpEDIT is a text editor, very like wordpad, for java, free with source
>from :
>
>http://members.tripod.com/~mpTOOLS/mpEDIT.html
>
>Thanks (Ernst & Michael) for the replies - I should have included the
>following in my query :
>
>the script to run mpEDIT is as follows -
>java -classpath src:$CLASSPATH mpTOOLS.mpEDIT.mpEDIT $1 $2 $3 $4

Unless the src directory is needed in the classpath, try using just

        java mpTOOLS.mpEDIT.mpEDIT $*

You could also do:

        CLASSPATH="src:${CLASSPATH}"
        java mpTOOLS.mpEDIT.mpEDIT $*

if you need the src part.  The -classpath option *replaces* the classpath
environment variable and thus prevents the java_wrapper from adding its
classes.zip path.  (A bug, IMHO, but it is how it does things)

Michael Sinz -- Director of Research & Development, NextBus Inc.
mailto:[EMAIL PROTECTED] --------- http://www.nextbus.com
My place on the web ---> http://www.users.fast.net/~michael_sinz

Reply via email to