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

Thanks in advance.

link|improve this question

55% accept rate
1  
"ServerFault: We will RTFM so that you won't need to!" *sigh* – grawity Jun 28 '10 at 14:36
feedback

2 Answers

up vote 12 down vote accepted

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.

link|improve this answer
feedback

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

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.