Skip to content

Instantly share code, notes, and snippets.

@msanjaypandit
Last active January 29, 2018 06:08
Show Gist options
  • Save msanjaypandit/558ac6c0027770f476f48ca7c686f934 to your computer and use it in GitHub Desktop.
Save msanjaypandit/558ac6c0027770f476f48ca7c686f934 to your computer and use it in GitHub Desktop.
[Cron jobs on linux] #cronjob #linux
# Example of job definition:
# .---------------- minute (0 - 59)
# |  .------------- hour (0 - 23)
# |  |  .---------- day of month (1 - 31)
# |  |  |  .------- month (1 - 12) OR jan,feb,mar,apr ...
# |  |  |  |  .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# |  |  |  |  |
# *  *  *  *  * user-name command to be executed
#crontab -e
*/10 *  *  *  * wget -O /dev/null webpage url
0    *  *  *  * /usr/bin/php /var/www/html/projectname/yourphpfile
#cronjob for last day of month
[ "$(/bin/date +\%d -d tomorrow)" = "01" ] && /usr/local/bin/php /var/www/html/projectname/yourphpfile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment