I\'m trying to output the document body and its headers to STDOUT by doing
wget -S -O - http://google.com
...but it shows only the HTML docum
Try the following, no extra headers
wget -qO- www.google.com
Note the trailing -. This is part of the normal command argument for -O to cat out to a file, but since we don't use > to direct to a file, it goes out to the shell. You can use -qO- or -qO -.
-
-O
>
-qO-
-qO -