I have a crontab that wgets a PHP page every five minutes (just to run some the PHP code), and I want to send the output of the request to standard out, while sending the normal wget output to /dev/null (or otherwise hide it). I couldn't find it in the wget manual.
I'm looking for something like:
wget -o stdout http://whatever.com/page.php > /dev/null
Anyone know?