view classpath.sh @ 7:46f6b69e8b10

better handling of missing mail_info
author Franklin Schmidt <fschmidt@gmail.com>
date Fri, 03 Jun 2022 09:57:45 -0600
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