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