view classpath.sh @ 18:64eee582fec1 default tip

add move logs while restart
author Vadim Filimonov <fffilimonov@yandex.ru>
date Wed, 19 Jun 2024 11:45:10 +0300
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