Cron Limit Bypass - workaround

DaveyF

Newbie
Joined
Jun 8, 2018
Messages
16
Reaction score
0
Hello All

Im currently with hostgator and i need to set a cron for every minute.

when i do so it changes every so oftern to
from

* * * * wget xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
*/24 * * * wget xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

Which is changed to every 24 minutes. Can i not use:

0 * * * wget xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
1 * * * wget xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
2 * * * wget xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
3 * * * wget xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
4 * * * wget xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
...
59 * * * wget xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
etc....

to run it every minute? to bypass the minimum 24 minute setting?

dave
 
Code:
*/1 * * * * wget http://yoururl1.com > /dev/null 2>&1 # for run every minute
*/24 * * * * wget http://yoururl24.com > /dev/null 2>&1 # for run every 24 minute

or is there a problem in intersecting launches?
 
Back
Top