mirror of
https://github.com/yacy/yacy_search_server.git
synced 2025-02-02 06:38:42 -05:00
16 lines
238 B
Bash
Executable File
16 lines
238 B
Bash
Executable File
#!/usr/bin/env sh
|
|
cd "`dirname $0`"
|
|
cd ..
|
|
./stopYACY.sh
|
|
#./killYACY.sh
|
|
cd DATA/RELEASE/
|
|
rm ../../lib/*
|
|
rm -Rf yacy
|
|
tar xfz `basename $1`
|
|
cp -Rf yacy/* ../../
|
|
rm -Rf yacy
|
|
cd ../../
|
|
chmod 755 *.sh
|
|
chmod 755 bin/*.sh
|
|
nohup ./startYACY.sh -l
|