Skip to content

crontab

Stands for cron table.

Format

* * * * * cd some_dir && python somefile.py

Create a new crontab

crontab -e

Remove current crontab

crontab -r

Schedules

Every minute

* * * * *

Every 5 minutes

*/5 * * * *