2011-01-17 134 views
4

我得到一個頁面與wget在shell腳本,但標題信息去標準輸出,我怎麼能重定向到一個文件?重定向wget頭輸出

#!/bin/sh 
wget -q --server-response http://192.168.1.130/a.php > /tmp/ilan_detay.out 

[email protected] ./get.sh 
    HTTP/1.0 200 OK 
    X-Proxy: 130 
    Set-Cookie: language=en; path=/; domain=.abc.com 
    X-Generate-Time: 0,040604114532471 
    Content-type: text/html 
    Connection: close 
    Date: Mon, 17 Jan 2011 02:55:11 GMT 
[email protected] 

回答

3

頁眉信息必須要stderr所以你需要重定向到一個文件中。要做到這一點變化>2>

1

要獲得只在文件服務器響應,你可以這樣做:

wget -q --server-response http://www.stackoverflow.com >& response.txt 

你可以閱讀更多關於UNIX輸出重定向here