comparison backup/classpath.sh @ 1693:45eaaf5146f3

add backup autostart
author Vadim Filimonov <fffilimonov@yandex.ru>
date Mon, 20 Jun 2022 10:29:43 +0300
parents
children
comparison
equal deleted inserted replaced
1692:d6ec67fa4a61 1693:45eaaf5146f3
1 DIR=`pwd`;
2 CLASSPATH=;
3
4 for file in ${DIR}/../build/luan/jars/*.jar; do
5 CLASSPATH=${CLASSPATH}:${file};
6 done
7 export CLASSPATH