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
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
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
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/
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