9 lines
225 B
Bash
Executable File
9 lines
225 B
Bash
Executable File
#! /bin/bash
|
|
|
|
while true; do
|
|
echo "Starting LVR Mails in `pwd` at `date`" >> /var/log/lvr/startstop.log
|
|
python ./generatemails.py
|
|
echo "LVR Mails stopped in `pwd` at `date`" >> /var/log/lvr/startstop.log
|
|
sleep 5
|
|
done
|