wget屏幕输出无法使用shell脚本重定向到日志文件

时间:2012-10-30 14:57:22

标签: shell

我有shell脚本,内容如下 我希望屏幕输出可以重定向到templog, 屏幕输出不是html内容,而是像

--2012-10-30 15:53:14--  http://www.youtube.com/results?search_query=pig
Resolving www.youtube.com... 173.194.34.5, 173.194.34.6, 173.194.34.7, ...
Connecting to www.youtube.com|173.194.34.5|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: “search_result”

    [ <=>                                   ] 108,503     --.-K/s   in 0.07s   

2012-10-30 15:53:15 (1.40 MB/s) - “search_result” saved [108503]

但它不能 我试过2&gt;&amp; 1 | cat&gt; templog进行 还不行

您可以复制内容并制作wget.sh文件,然后运行它 你会注意到内容无法重定向到templog,

如何处理这个来实现我的目标? 感谢

keyword=pig
page_nr=3
wget -O search_result http://www.youtube.com/results?search_query=${keyword}&page=${page_nr} > templog

1 个答案:

答案 0 :(得分:11)

你只需要在你的网址上加上引号。 wget然后使用 stderr 在屏幕上打印,因此您还必须使用 stderr 而不是 stdout (使用{ {1}}代替2>):

>