cron - Cronjob firing at wrong schedule. -


I have two chronobes, I want to run two chronozes at a small interval of ten minutes. Once in two days, 0100 hours and 0110 hours

This is what I am trying to do.

  0 1 * / 2 * * job1.sh10 1 * / 2 * * job2.sh   

Job 1 is not working as expected It runs twice daily according to the expectations of 2 runs (once in two days) - Am I doing wrong?

You also have to add binary to the execution of the script: the complete path to your file:

  0 1 * / 2 * * / bin / sh /route/to/your/file/job1.sh10 1 * / 2 * * / bin / sh / route / to / your / file / job2 Sh   

/ bin / sh can be another thing, just get it from which is sh .

Comments

Popular posts from this blog

excel vba - How to delete Solver(SOLVER.XLAM) code -

java - Reaching JTextField in a DocumentListener -

c# - Add Image in a stackpanel based on textbox input -