如何在Ubuntu中使用shell显示URL指定的网页的html代码?

时间:2011-08-11 18:11:19

标签: shell curl wget

我想在Ubuntu中使用shell显示由URL指定的网页的html代码?我怎么能这样做?

2 个答案:

答案 0 :(得分:1)

您可以使用cURL:

curl http://whatever.com

您可能需要安装curl tho -

apt-get install curl

答案 1 :(得分:1)

为了补充斯蒂芬的答案,wget也可以这样做:

wget -q -O - http://example.com