Search…
Config file
You can easily end up with curl command lines that use a large number of command-line options, making them rather hard to work with. Sometimes the length of the command line you want to enter even hits the maximum length your command-line system allows. The Microsoft Windows command prompt being an example of something that has a fairly small maximum line length.
To aid such situations, curl offers a feature we call "config file". It allows you to write command-line options in a text file instead and then tell curl to read options from that file in addition to the command line.
You tell curl to read more command-line options from a specific file with the -K/--config option, like this:
curl -K cmdline.txt http://example.com
…and in the cmdline.txt file (which, of course, can use any file name you please) you enter each command line per line:
# this is a comment, we ask to follow redirects
--location
# ask to do a HEAD request
--head
The config file accepts both short and long options, exactly as you would write them on a command line. As a special extra feature, it also allows you to write the long format of the options without the leading two dashes to make it easier to read. Using that style, the config file shown above can alternatively be written as:
# this is a comment, we ask to follow redirects
location
# ask to do a HEAD request
head
Command line options that take an argument must have its argument provided on the same line as the option. For example changing the User-Agent HTTP header can be done with
user-agent "Everything-is-an-agent"
To allow the config files to look even more like a true config file, it also allows you to use '=' or ':' between the option and its argument. As you see above it is not necessary, but some like the clarity it offers. Setting the user-agent option again:
user-agent = "Everything-is-an-agent"
If the parameter contains whitespace (or starts with : or =), the parameter must be enclosed within quotes. Within double quotes, the following escape sequences are available: \\, \", \t, \n, \r and \v. A backslash preceding any other letter is ignored.
The argument to an option can be specified without double quotes and then curl will treat the next space or newline as the end of the argument.
The user agent string example we have used above has no white spaces and therefore it can also be provided without the quotes like:
user-agent = Everything-is-an-agent
Finally, if you want to provide a URL in a config file, you must do that the --url way, or just with url, and not like on the command line where everything that is not an option is assumed to be a URL. So you provide a URL for curl like this:
url = "http://example.com"

Default config file

When curl is invoked, it always (unless -q is used) checks for a default config file and uses it if found.
The default config file is checked for in the following places in this order:
  1. 1.
    $CURL_HOME/.curlrc
  2. 2.
    $XDG_CONFIG_HOME/.curlrc (Added in 7.73.0)
  3. 3.
    $HOME/.curlrc
  4. 4.
    Windows: %USERPROFILE%\\.curlrc
  5. 5.
    Windows: %APPDATA%\\.curlrc
  6. 6.
    Windows: %USERPROFILE%\\Application Data\\.curlrc
  7. 7.
    Non-Windows: use getpwuid to find the home directory
  8. 8.
    On Windows, if it finds no .curlrc file in the sequence described above, it checks for one in the same dir the curl executable is placed.
On Windows two filenames are checked per location: .curlrc and _curlrc, preferring the former. Ancient curl versions on Windows checked for _curlrc only.
Export as PDF
Copy link
Edit on GitHub