1

What does -q and -O mean in the following cronjob?

*/30 * * * * /usr/bin/wget -q -O /dev/null http://example.com/moodle/admin/cron.php
shin
  • 333
  • 3
  • 8
  • 16

2 Answers2

20

They are actually options for the wget command and not to do with cron's operation.

-q tells wget to operate quietly (ie. to not output the usual status information)
-O /dev/null tells it to output to /dev/null

Type man wget for more info on wget's operation and options.

David Spillett
  • 22,754
  • 45
  • 67
7

You can find this in wget manpage.
-O is the location where the file is save, here the file will be trashed
-q is to suppress console output

radius
  • 9,633
  • 25
  • 45