我试图使用wget来保存网页的文本。我跑:
wget "http://www.finance.yahoo.com/q/op?s=GOOG" > goog.txt 尝试将网页保存到goog.txt,但是wget告诉我:
Saving to: `op?s=GOOG'为什么wget是这样的行为,我如何才能得到预期的行为?
发布于 2011-04-27 07:39:02
使用-O选项:
wget "http://www.finance.yahoo.com/q/op?s=GOOG" -O goog.txt 发布于 2014-07-10 21:01:52
curl "http://www.google.com/" >> /Users/name/desktop/temp.txthttps://unix.stackexchange.com/questions/12352
复制相似问题