目录

curl 用法备忘

1. 使用指定文件作为请求数据

curl -X POST -H "Content-Type:text/xml;charset=UTF-8" -d @test.xml https://url:port/api

参数说明:

2. 上传文件

curl -X POST -F "file=@/home/user/test.jpg" https://url:port/api

参数说明:

3. 通过 FTP 上传和下载文件

上传

curl -u <username>:<password> --ftp-create-dirs -T <local_file> ftp://<ftp_server>/<remote_path>/<remote_file>

参数说明:

下载

curl -u <username>:<password> -o <local_file> ftp://<ftp_server>/<remote_file>

参数说明: