Is there a way to give a specific file name when saving a file via cURL?

后端 未结 2 2042
忘掉有多难
忘掉有多难 2020-12-12 16:50

I am pulling files using curl in the mac OS X terminal and want to give them different names. Is there a way to specify a name, such as a \"save as\" function when using cur

相关标签:
2条回答
  • 2020-12-12 17:39

    curl -o <name> <url> seems to do the trick..

    HINT: You can also try with man curl...

    0 讨论(0)
  • 2020-12-12 17:40

    Either use the -o option or its alias --output, or redirect shell output to the file of choice by using >.

    curl -o /path/to/local/file http://url.com
    curl http://url.com > /path/to/local/file
    

    If you want to preserve the original file name from the remote server, use the -O option or its alias --remote-name.

    curl -O http://url.com/file.html 
    

    Stores the output from the remote location in the current directory as file.html.

    0 讨论(0)
提交回复
热议问题