How do you redirect wget response to standard out?
wget -O - http://whatever.com/page.php > /dev/null
or, if you want to redirect standard error output also:
wget -O - http://whatever.com/page.php > /dev/null 2>&1
or, for codegolf :-)
wget -O-
A simpler version
wget -qO- http://example.com
equivalent to
wget -q -O - http://example.com
where
-q
turns off the output of log, including error information-O -
, equivlalent to-O /dev/stdout
, means dump the web page to a file named/dev/stdout
.
wget -qO /dev/null http://whatever.com/page.php
-q
to make it quiet-O /dev/null
to ignore the page contents