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

MacosCurlTerminal

Macos Problem Overview


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 curl?

Macos Solutions


Solution 1 - Macos

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.

Solution 2 - Macos

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

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

Solution 3 - Macos

For those who are getting familiar with CURL, here is a more clear and easy to understand use case example:

REMOTE URL

http(s)://my-remote-image.png?token=TOKEN_ID

CURL COMMAND IN ACTION (lowercase "o")

curl -o custom_name_to_be_used.png "http(s)://my-remote-image.png?token=TOKEN_ID"

Solution 4 - Macos

Here is how to download a file to another file name, and allow redirects. No need to look for -L in the comments.

curl -L "$URL" -o "$FILENAME"

Example

curl -L https://protonmail.com/download/bridge/protonmail-bridge_2.1.1-1_amd64.deb -o bridge.deb

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestioniveytronView Question on Stackoverflow
Solution 1 - MacossimonnordbergView Answer on Stackoverflow
Solution 2 - MacosTonny MadsenView Answer on Stackoverflow
Solution 3 - Macoshugob1View Answer on Stackoverflow
Solution 4 - MacosElijahView Answer on Stackoverflow