for i in {1..6}; COMMAND; done
means that the COMMAND will be executed 6 times.
Also:
Since the sleep is executed only after the command is finished, the interval may be longer than 10 seconds, depending on how long the command takes. This should be taken into account.
I need to run a CRON job every 10 seconds from started time. In Linux how to run a CRON job on every 10 seconds from the time its started? I am trying to solve that as following: when I make a r...
stackoverflow.com