我有一个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>&1|cat > 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