通过使用 --output-document 和- 符号,你可以指示 wget 将数据发送到 标准输出(stdout): $ wget http://example.com --output-document - | head -n4 <!doctype html> <html> <head> <title>Example Domain</title> 你可以使用 --output-document 选项(简写为 -O)将下载文件命名为任何你想要的名称: ...
Connectingto example.com|93.184.216.34|:80...connected. HTTP request sent,awaiting response...200OK Length:1256(1.2K)[text/html] Savingto:'index.html' 1. 2. 3. 4. 5. 6. 7. 通过使用--output-document和-符号,你可以指示wget将数据发送到标准输出stdout: 复制 $wgethttp://example.com --ou...
Saving to: 'index.html' 通过使用--output-document和-符号,你可以指示 将数据发送到 标准输出(stdout): $ wget http://example.com --output-document - | head -n4 doctype html> Example Domaintitle> 你可以使用--output-document选项(简写为-O)将下载文件命名为任何你想要的名称: $ wget http://exam...
HTTP request sent,awaiting response...200OK Length:1256(1.2K)[text/html] Savingto:'index.html' 如果你不想将下载的文件保存在本地,而只是想将其显示在标准输出(stdout)里,可以使用--output-document选项,同时后面再跟上一个-号。 $ wget http://www.lxlinux.net --output-document - | head -n4 <...
Saving to: 'index.html' 如果你不想将下载的文件保存在本地,而只是想将其显示在标准输出(stdout)里,可以使用--output-document选项,同时后面再跟上一个-号。 $ wget http://www.lxlinux.net --output-document - | head -n4 <!doctype html> ...
Output will be written to `wget-log'. 对于下载非常大的文件的时候,我们可以使用参数-b进行后台下载,你可以使用以下命令来察看下载进度: tail-f wget-log 伪装代理名称下载 wget --user-agent="Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648....
Savingto:'index.html' 如果你不想将下载的文件保存在本地,而只是想将其显示在标准输出(stdout)里,可以使用--output-document选项,同时后面再跟上一个-号。 $ wget http://www.lxlinux.net --output-document - | head -n4<!doctypehtml><html><head><title>Example Domain</title> ...
1946 Connecting to www.lxlinux.net|93.184.216.34|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 1256 (1.2K) [text/html] Saving to:'index.html'如果你不想将下载的文件保存在本地,而只是想将其显示在标准输出(stdout)里,可以使用登录后复制--output-document选项,同时...
>Wget sends to stderr by default. Try "wget -o - |tee wget.log". This >should send output to stdout, which tee can then handle. That doesn't work. It just creates a file called "-". Interestingly, I've just found out that Win NT's default command-line ...
如果你不想将下载的文件保存在本地,而只是想将其显示在标准输出(stdout)里,可以使用 --output-document 选项,同时后面再跟上一个 - 号。 复制 $ wget http://www.lxlinux.net--output-document - | head -n4<!doctype html><html><head><title>Example Domain</title> ...