Top "Cron" questions

Cron is a time-based job scheduler running as a daemon process in Unix-like computer operating systems.

How to run a cron job on every Monday, Wednesday and Friday?

How can one run a cron job for every Monday, Wednesday and Friday at 7:00 pm?

cron
find -mtime files older than 1 hour

I have this command that I run every 24 hours currently. find /var/www/html/audio -daystart -maxdepth 1 -mtime +1 -type f …

bash shell command-line cron
Execute PHP script in cron job

In our centos6 server. I would like to execute a php script in cron job as apache user but unfortunately …

php linux apache cron centos
CRON job to run on the last day of the month

I need to create a CRON job that will run on the last day of every month. I will create …

automation cron posix
How to run a cronjob every X minutes?

I'm running a PHP script in a cronjob and I want to send emails every 5 minutes My current (crontab) cronjob: 10 * * * * /…

php cron cron-task
How do I create a crontab through a script

I need to add a cron job thru a script I run to set up a server. I am currently …

linux shell ubuntu cron crontab
How to set a cron job to run every 3 hours

Is this the correct way for setting a cron job to run every 3 hours? After setting it this way, cron …

cron crontab cpanel
How to install crontab on Centos

I am familiar to setup the cron scheduler using crontab -e command on my centos. But today I found one …

linux cron centos crontab
Does WGET timeout?

I'm running a PHP script via cron using Wget, with the following command: wget -O - -q -t 1 http://www.…

linux cron wget
I need a Nodejs scheduler that allows for tasks at different intervals

I am looking for a node job schedule that will allow me to schedule a number of tasks at different …

node.js cron scheduled-tasks