I want to run Cron job after every 15 minutes and 4 times in an hour like First it will run on
9:00 AM then
9:15 AM ...
9:30 AM so on.
Note: I didn't want it like 8:53 then 9:08
I want to run Cron job after every 15 minutes and 4 times in an hour like First it will run on
9:00 AM then
9:15 AM ...
9:30 AM so on.
Note: I didn't want it like 8:53 then 9:08
you can use the below format to run in every 15 minutes.
*/15 * * * * /path/to/command
0,15,30,45 * * * * /path/to/command