I need to run a task CRONevery 10 seconds from the moment it starts.
On Linux, how to run a task CRONevery 10 seconds from the moment it starts?
I try to do as the following-
when I make a request (or start) at 04:28:34, it should start at 04:28:44 and not at 4:28:40
This is what I did and I try
*/10 * * * * /usr/bin/wget http://api.us/application/
What have I done here to not work every 10 seconds?
source
share