view classpath.sh @ 1:92a0646e38b6

fix backup
author fffilimonov
date Thu, 12 May 2022 05:32:53 -0500
parents dfc36e7ed22c
children
line wrap: on
line source

DIR=`pwd`;
CLASSPATH=;

for file in ${DIR}/luan/jars/*.jar; do
  CLASSPATH=${CLASSPATH}:${file};
done
export CLASSPATH