There are several options to make curl output to a file # saves it to myfile.txt curl http://www.example.com/data.txt -o myfile.txt # The #1 will get substituted with the url, so the filename contains the url curl http://www.example.com/data.txt -o "file_#1.txt" # saves to...
输出-o file--output file将返回内容输出到文件。如果是用过通配符获取多个url,可以使用“#”后跟“数字序号”,curl会自动将它替换对应的关键词,如: curl "http://aiezu.com/{a,b}.txt" -o "#1.txt"; 将保存为:“a.txt”,“b.txt”; curl "http://aiezu.com/{a,b}_[1-3].txt" -o "#1#2...
-o, --output <file> 输出写入到文件而不是 stdout -O, --remote-name 将输出写入名为远程文件的文件中 -s, --安静模式 -T,--upload-file <file> 将本地文件传输到目的地 -u, --user <user:password> 服务器用户和密码 -A、--user-agent <name> 发送 User-Agent <name> 到服务器 -v,--verbo...
Write output to <file> instead of stdout. If you are using {} or [] to fetch multiple documents, you can use '#' followed by a number in the <file> specifier. That variable will be replaced with the current string for the URL being fetched. Like in: curl http://{one,two}.site....
curl -X POST -F "file=@/path/to/file" https://www.example.com -o/–output:将服务器的响应保存到指定的文件中。例如,将响应保存到文件response.txt:curl -o response.txt https://www.example.com -i/–include:在输出中包含HTTP响应头。例如,显示响应头和内容:curl -i https://www.example....
# 调试类 -v, --verbose 输出信息 -q, --disable 在第一个参数位置设置后 .curlrc 的设置直接失效,这个参数会影响到 -K, --config -A, --user-agent -e, --referer -K, --config FILE 指定配置文件 -L, --location 跟踪重定向 (H) # CLI显示设置 -s, --silent Silent模式。不输出任务内容 ...
<offset>断点续转-D/--dump-header <file>把header信息写入到该文件中-e/--referer 来源网址-f/--fail 连接失败时不显示http错误-o/--output 把输出写到该文件中-O/--remote-name 把输出写到该文件中,保留远程文件的文件名-r/--range <range> 检索来自HTTP/1.1或FTP服务器字节范围-s/--silent 静音模式...
保存为文件:使用选项-O, --remote-name、-o, --output <file>: # 保存网页,自动命名为 index.html $ curl -O 'http://www.baidu.com/index.html' # 保存网页,手动命名为 baidu.html $ curl -o 'baidu.html' 'http://www.baidu.com/index.html' ...
-o/--output 把输出写到该文件中 -O/--remote-name 把输出写到该文件中,保留远程文件的文件名 -r/--range <range> 检索来自HTTP/1.1或FTP服务器字节范围 -s/--silent 静音模式。不输出任何东西 -T/--upload-file <file> 上传文件 -u/--user <user[:password]> 设置服务器的用户和密码 ...
--max-filesize <bytes> 设置最大下载的文件总量 -M/--manual 显示全手动 -n/--netrc 从netrc文件中读取用户名和密码 --netrc-optional 使用 .netrc 或者 URL来覆盖-n --ntlm 使用 HTTP NTLM 身份验证 -N/--no-buffer 禁用缓冲输出 -o/--output 把输出写到该文件中 ...