I have a script that I want to run every 182 seconds. As you know, cronjob precision is minutes so first I want to ask how can I run my code as a job every 182 seconds?
Secondly, I want to ask is there any better and efficient solution as cronjob is, to run a command periodically with a better precision than cronjob? I heard about some alternative options like watch
command. However, I want a comparison between these options and cronjob and possible advantages or disadvantages each one has.