I'm trying to use wget to save the text of a web page. I run:
wget "http://www.finance.yahoo.com/q/op?s=GOOG" > goog.txt
to try and save the web page to goog.txt, but instead wget tells me:
Saving to: `op?s=GOOG'
Why is wget acting like this, and how can I get the expected behavior?
wget
prints tracing information to standard output and downloads the content to a file whose name is derived from the URL and server response. Also, use-q
to suppress tracing information. – Gilles 'SO- stop being evil' Apr 30 '11 at 12:12