From d6f5ee8104eda98a0c547f053d244a0fa6ccf802 Mon Sep 17 00:00:00 2001 From: ademant Date: Fri, 2 Aug 2019 16:42:56 +0200 Subject: [PATCH] adjust start logger to python3 and web server --- start_logger.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/start_logger.sh b/start_logger.sh index 678f31d..e0f987a 100755 --- a/start_logger.sh +++ b/start_logger.sh @@ -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