1

I want set run a file with cron at 12:03:37 every day. How do I set set cron to run a file accurately in seconds?

Brad Koch
  • 19,267
  • 19
  • 110
  • 137
yuli chika
  • 9,053
  • 20
  • 75
  • 122

1 Answers1

5

You could set it up to run at 12:03 and then sleep for 37 seconds:

3 12 * * * root sleep 37; /path/to/your/script
Ramon
  • 8,202
  • 4
  • 33
  • 41