From 9f47d75e029b844189d1fdec483020d636bda632 Mon Sep 17 00:00:00 2001 From: Mikael Nordin Date: Sat, 23 May 2020 18:28:53 +0200 Subject: [PATCH] Add crontab example --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 92260f4..d067ad7 100644 --- a/README.md +++ b/README.md @@ -30,3 +30,11 @@ vim /opt/weather/weather.ini /opt/weather/getweather.py /opt/weather/aggregateweather.py ```` +Example crontab entry for weather user: +```` +# m h dom mon dow command +15 * * * * /opt/weather/getweather.py +30 * * * * /opt/weather/getweather.py --station 97280 +45 2,14 * * * /opt/weather/aggregateweather.py +45 3,15 * * * /opt/weather/aggregateweather.py --station 97280 +````