[转]linux下访问网页的命令

1.elinks

例如:

elinks --dump http://www.baidu.com

它会把网页上显示的文字内容显示出来,然后显示网页上所有的超链接

2.wget 这个会将访问的首页下载到本地

[root@el5-mq2 ~]# wget http://www.baidu.com

--2011-10-17 16:30:10--http://www.baidu.com/

Resolvingwww.baidu.com... 119.75.218.45, 119.75.217.56

Connecting towww.baidu.com|119.75.218.45|:80... connected.

HTTP request sent, awaiting response... 200 OK

Length: 8403 (8.2K) [text/html]

Saving to: `index.html'

100%[==========================================================================================>]

8,403       --.-K/s   in 0.01s

2011-10-17 16:30:10 (648 KB/s) - `index.html' saved [8403/8403]

3.curl会显示出html源码

curl http://www.baidu.com/index.html

转于http://blog.csdn.net/zhuying_linux/article/details/6881728

你可能感兴趣的:([转]linux下访问网页的命令)