wget
下载工具
一般
wget url
wget url -o log -O file
wget -t 5 url
限制下载速度
wget --limit-rate 20k url
断点续传
wget -c url
镜像整个网站
wget --mirror url
wget -r -N -l 5 url
ftp、http使用密码
wget --user username --password pass url
使用post
wget url --post-data "name=value1&name2=value2" -o out.html
curl
curl url -O
curl url -o filename
curl url
断点续传
curl -C - url
指定referer
curl --referer refer_url target_url
curl url --cookie "user=bob;pass=123"
curl url --cookie-jar file
--cookie指定cookie,多个cookie使用";"隔开 --cookie-jar,指定cookie文件 设置代理字符串
curl url --user-agent "Mozilla/5.0"
指定任意头部信息
curl -H "Host:www.test.com" -H "Accept-language: en" url
指定最大下载大小
curl url --max-filesize bytes
使用用户名密码
curl -u username:passwd url
只打印头信息
curl -I http://test.com
curl -head http://test.com
只打印http头信息,不下载文件 post提交数据
curl -d "name=value1&name2=value2" url -o out.html