Answers:
使用该-o
选项或其别名--output
,或者使用来将shell输出重定向到所选文件>
。
curl -o /path/to/local/file http://url.com
curl http://url.com > /path/to/local/file
如果要保留远程服务器上的原始文件名,请使用该-O
选项或其别名--remote-name
。
curl -O http://url.com/file.html
将来自远程位置的输出存储为当前目录中的file.html。
curl -o <name> <url>
似乎可以解决问题。
提示:您也可以尝试man curl
...