Files
storage_fresco/start.sh
2019-05-23 13:36:01 +00:00

10 lines
291 B
Bash
Executable File

#! /bin/bash
while true; do
echo "Starting LVR in `pwd` at `date`" >> /var/log/lvr/startstop.log
#python ./storage.py `pwd` 2>&1 >> log_`date -Idate`.txt
python ./storage.py `pwd` 2>&1 >> log.txt
echo "LVR stopped in `pwd` at `date`" >> /var/log/lvr/startstop.log
sleep 10
done