Cron job to run every 1st day of the month [closed]

僤鯓⒐⒋嵵緔 提交于 2019-12-09 06:01:07

问题


I need to create a cron job that will run on the every 1st day of the month every minute of this day. I will create it from cpanel.

Any help is appreciated. Thanks


回答1:


The crontab entry should look like this :

* * 1 * * cmd_to_run

The columns mean

every minute

every hour

1st day of month

every month

any day of week, and then the command.

I'm not sure about cpanel admin



来源:https://stackoverflow.com/questions/19874784/cron-job-to-run-every-1st-day-of-the-month

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!