Wget output document and headers to STDOUT
http, wget
Solution
Try the following
wget -q -S -O - www.google.com 2>&1
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 -`.
Problem
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 document. Update: Got it to work with ``` wget --save-headers --output-document - http://google.com ``` `wget --version` shows my version is `GNU Wget 1.11.4 Red Hat modified`.