how to build dynamically a Java classpath in Perl
Posted
by joe
on Stack Overflow
See other posts from Stack Overflow
or by joe
Published on 2010-05-11T09:48:21Z
Indexed on
2010/05/11
9:54 UTC
Read the original article
Hit count: 314
For Example in shell script :
_CLASSPATH =.
for jar in lib/*.jar
do
_CLASSPATH=${_CLASSPATH}:${jar}
done
how to build dynamically a Java classpath in Perl ?
© Stack Overflow or respective owner