comparison classpath.sh @ 0:dfc36e7ed22c

init
author Vadim Filimonov <fffilimonov@yandex.ru>
date Thu, 12 May 2022 13:51:59 +0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:dfc36e7ed22c
1 DIR=`pwd`;
2 CLASSPATH=;
3
4 for file in ${DIR}/luan/jars/*.jar; do
5 CLASSPATH=${CLASSPATH}:${file};
6 done
7 export CLASSPATH