Wget output document and headers to STDOUT

前端 未结 5 829
失恋的感觉
失恋的感觉 2020-12-22 18:30

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

5条回答
  •  梦毁少年i
    2020-12-22 19:17

    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 -.

提交回复
热议问题