adjust start logger to python3 and web server

master
ademant 2019-08-02 16:42:56 +02:00
parent f0618153f3
commit d6f5ee8104
1 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,8 @@ script=$(readlink -f $0)
scriptpath=$(dirname ${script})
cd $scriptpath
nohup python3 pyweb.py &
for i in $(find ${scriptpath} -name "log_*.py"); do
nohup python $i &
nohup python3 $i &
done