随笔分类 - curl
摘要:参考库libftp(though it's in C)ftplib(again, looks like C)libCurlseems to have FTP capabilities.ace源码:main.c#include <stdio.h>#include <string.h>#include <curl/curl.h>#include <sys/types.h>#include <sys/stat.h>#include <fcntl.h>#include <errno.h>#ifdef WIN32
阅读全文
摘要:原文地址:http://blog.sina.com.cn/s/blog_4b9eab320100slyw.html可以看作命令行浏览器1、开启gzip请求curl -I http://www.sina.com.cn/ -H Accept-Encoding:gzip,defalte2、监控网页的响应时间curl -o /dev/null -s -w "time_connect: %{time_connect}\ntime_starttransfer: %{time_starttransfer}\ntime_total: %{time_total}\n" "http:
阅读全文