Re: setting the class path -an easier way

2003-06-16 Thread Paul Tremblay
On Mon, Jun 16, 2003 at 11:30:50AM +0530, Shanu wrote: > > Hi Paul, > Following script can be used to set the path dynamically.. > > #!/bin/tcsh > set classpath=. > set alljars="" > foreach i (`find . -name "*.jar"`) > set alljars=($i":"$alljars) > end > set CLASSPATH=($CLASSPATH$allj

Re: setting the class path -an easier way

2003-06-16 Thread Shanu
Hi Paul, Following script can be used to set the path dynamically.. #!/bin/tcsh set classpath=. set alljars="" foreach i (`find . -name "*.jar"`) set alljars=($i":"$alljars) end set CLASSPATH=($CLASSPATH$alljars$classpath) echo $CLASSPATH export $CLASSPATH So, tomorrow even if

Re: setting the class path -an easier way

2003-06-14 Thread Christopher Smith
On Sat, 2003-06-14 at 17:12, Paul Tremblay wrote: > This gets real tedious. And this is for just one application. > > I know with python, for example, you can just tell python to look in one > folder for all the libraries. > > Is there a way to do this with java? Is there an easier way to creat

Re: setting the class path -an easier way

2003-06-14 Thread Matthew Hunter
On Sat, Jun 14, 2003 at 08:12:23PM -0400, Paul Tremblay <[EMAIL PROTECTED]> wrote: > For example, I have installed xalan. In my ./bashprofile, I have: > export CLASSPATH=$CLASSPATH:/home/paul/java/jars/xalan-j_2_3_1/bin/xsltc.jar > export CLASSPATH=$CLASSPATH:/home/paul/java/jars/xalan-j_2_3_1/bin/

setting the class path -an easier way

2003-06-14 Thread Paul Tremblay
I just installed java 1.41 on my linux box. By default, Mandrake installs kaffee, and I've had problems with kaffee in the past. As with the last time, installing java is almost too easy. No builds, no make installs--it's just there! However, I wondered if someone could help me with an easy way to