Skip to content

Scheduled Run

terrelsa13 edited this page Oct 16, 2023 · 21 revisions

Linux

  • Below cron entry runs /opt/MUMC/mumc.py everyday at 00:00hrs (aka 12:00am).
    • $0 0 * * * python3 /opt/MUMC/mumc.py
  • Below cron entry runs /opt/MUMC/mumc.py every Monday at 01:23hrs (aka 1:23am) and saves the output to an output log file to /var/log/mumc.log.
    • $23 1 * * 1 python3 /opt/mumc/mumc.py > /var/log/mumc.log 2>&1

Windows

  • There are many pages online, like this one, showing how to use the Windows Task Scheduler to run a Python script.

Docker

  • tbd
Clone this wiki locally