django crontab 定时任务

分 时 日 月 周 命令(最好用绝对路径)
比如:
* * * * * rm -fr /mnt/* //每分钟执行一次对/mnt目录下文件的删除
*/2 * * * * rm -fr /mnt/* //每隔两分钟执行一次
*/2 08-17 1,15 3-5 3 rm -fr /mnt/* //在3-5月的每周三的1号和15号的8点到17点每隔两分钟执行

https://www.cnblogs.com/perfe/p/6198213.html

猜你喜欢

转载自www.cnblogs.com/pythonClub/p/9905227.html