I want to run a script through linux cron which will run after 9 hour
.
For example: If current time is 00:34
and I start the cron now, then my shell script should run at 00:34
and then at 09:34
and at 18:34
and so on. For this I have entered the below cron :
34 */9 * * * /path/to/script/foo.sh
But this is not working as expected. So, Any help would be helpful.