curl下载断点传续
curl -C offset -O http://google.com/p4.mp4
offset手动输入已经下载的字节数
curl -C - -O http://google.com/p4.mp4
-C -
可以自动识别offet续传
curl使用代理
curl -x 192.168.1.106:8118 http://google.com/p4.mp4
-x
后面跟HTTP代理的host和port
curl --socks5-hostname 192.168.1.106:9050 http://google.com/p4.mp4
--socks5-hostname
后面跟socks5代理的host和port
本作品采用知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议进行许可。