QuestionQ2

Basic BSD System Administration

Which cron-job line executes myscript once every hour?

  • A
            • /pathto/myscript
  • B 0 * * * * /pathto/myscript
  • C
    • 0 * * * /pathto/myscript
  • D
      • 0 * * /pathto/myscript
  • E
        • 0 * /pathto/myscript
Explanation

A cron schedule of 0 * * * * runs at minute 0 of every hour, so the command executes once per hour.

Community Discussion

No comments yet. Be the first to start the discussion!