I need to run my cron after every 45 days in single line of shell terminal. Please provide some solution for the same

Thanks

link|improve this question
1  
What have you tried? – Cody Gray Jan 7 at 12:37
feedback

1 Answer

* * */45 * * /temp/command.sh

It works in linux, but it can't be accepted by hp unix.

There is another choice: run below command every day:

[ $(( ($(date +%s)/86400) % 45 )) -eq 0 ] && /temp/command.sh

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.