You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
411 B
12 lines
411 B
cd `dirname $0`
|
|
|
|
# generating the proper classpath
|
|
CLASSPATH=""
|
|
for N in `ls -1 lib/*.jar`; do CLASSPATH="$CLASSPATH$N:"; done
|
|
for N in `ls -1 libx/*.jar`; do CLASSPATH="$CLASSPATH$N:"; done
|
|
|
|
java -classpath classes:htroot:$CLASSPATH net.yacy.yacy -shutdown
|
|
|
|
echo "Please wait until the YaCy daemon process terminates."
|
|
echo "You can monitor this with 'tail -f DATA/LOG/yacy00.log' and 'fuser log/yacy00.log'"
|