Cron Job
List Cron Jobs
$ crontab -l
New Cron Job
$ crontab -e
>> Opens file to edit
# Timing syntax
50 19 * * * python3 text.py > test.txt
Timing Syntax:
minute
hour
day of month
month
day of week
Asterisks() indicate it will run every time*.
Remove Cron Job
$ crontab -r
Last updated
Was this helpful?