output.d 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  2. SPDX-License-Identifier: curl
  3. Long: output
  4. Arg: <file>
  5. Short: o
  6. Help: Write to file instead of stdout
  7. See-also: remote-name remote-name-all remote-header-name
  8. Category: important curl
  9. Example: -o file $URL
  10. Example: "http://{one,two}.example.com" -o "file_#1.txt"
  11. Example: "http://{site,host}.host[1-5].com" -o "#1_#2"
  12. Example: -o file $URL -o file2 https://example.net
  13. Added: 4.0
  14. Multi: append
  15. ---
  16. Write output to <file> instead of stdout. If you are using {} or [] to fetch
  17. multiple documents, you should quote the URL and you can use '#' followed by a
  18. number in the <file> specifier. That variable is replaced with the current
  19. string for the URL being fetched. Like in:
  20. curl "http://{one,two}.example.com" -o "file_#1.txt"
  21. or use several variables like:
  22. curl "http://{site,host}.host[1-5].com" -o "#1_#2"
  23. You may use this option as many times as the number of URLs you have. For
  24. example, if you specify two URLs on the same command line, you can use it like
  25. this:
  26. curl -o aa example.com -o bb example.net
  27. and the order of the -o options and the URLs does not matter, just that the
  28. first -o is for the first URL and so on, so the above command line can also be
  29. written as
  30. curl example.com example.net -o aa -o bb
  31. See also the --create-dirs option to create the local directories
  32. dynamically. Specifying the output as '-' (a single dash) passes the output to
  33. stdout.
  34. To suppress response bodies, you can redirect output to /dev/null:
  35. curl example.com -o /dev/null
  36. Or for Windows:
  37. curl example.com -o nul