Regarding Shell Script
Posted
by arav
on Stack Overflow
See other posts from Stack Overflow
or by arav
Published on 2010-03-16T05:12:28Z
Indexed on
2010/03/16
5:16 UTC
Read the original article
Hit count: 422
I have the below line in the unix shell script. I want to exclude test.jar in WEB-INF/lib being added to the CLASSPATH. How can i do it?
for file in WEB-INF/lib/*jar ;
do
CLASSPATH=$CLASSPATH:$PWD/$file
done
© Stack Overflow or respective owner