curl和wget的区别和使用
2021-06-22 06:06
标签:res 文件 man web curl linux .com 下载文件 var curl和wget基础功能有诸多重叠,如下载等。 在高级用途上的curl由于可自定义各种请求参数所以长于模拟web请求,用于测试网页交互(浏览器);wget由于支持ftp和Recursive所以长于下载,用于下载文件(迅雷)。 1.下载文件 2.下载文件并重命名 3.断点续传 4.限速下载 5.显示响应头部信息 6.wget利器--打包下载网站 参考: http://man.linuxde.net/curl http://man.linuxde.net/wget https://www.zhihu.com/question/19598302 curl和wget的区别和使用 标签:res 文件 man web curl linux .com 下载文件 var 原文地址:http://www.cnblogs.com/lsdb/p/7171779.htmlcurl -O http://man.linuxde.net/text.iso #O大写,不用O只是打印内容不会下载
wget http://www.linuxde.net/text.iso #不用参数,直接下载文件curl -o rename.iso http://man.linuxde.net/text.iso #o小写
wget -O rename.zip http://www.linuxde.net/text.iso #O大写curl -O -C -URL http://man.linuxde.net/text.iso #C大写
wget -c http://www.linuxde.net/text.iso #c小写curl --limit-rate 50k -O http://man.linuxde.net/text.iso
wget --limit-rate=50k http://www.linuxde.net/text.isocurl -I http://man.linuxde.net/text.iso
wget --server-response http://www.linuxde.net/test.isowget --mirror -p --convert-links -P /var/www/html http://man.linuxde.net/