編碼的世界 / 優質文選 / 生物

linux 如何使用命令打開網址


2022年1月07日
-   

1、wget 這個會將訪問的首頁下載到本地
[root@el5-mq2 ~]# wget http://www.baidu.com 2011-10-17 16:30:10  http://www.baidu.com/ Resolving www.baidu.com 119.75.218.45, 119.75.217.56 Connecting to www.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]
2、curl會顯示出源碼
curl http://www.baidu.com/index.html
4.lynx(這個以前在群裏面見有人討論過,但是沒有嘗試過,想用的話還需要下載軟件)
lynx http://www.baidu.com -  原文:https://blog.csdn.net/zhuying_linux/article/details/6881728   

熱門文章