upload-file.d 1.5 KB

12345678910111213141516171819202122232425262728293031323334
  1. Long: upload-file
  2. Short: T
  3. Arg: <file>
  4. Help: Transfer local FILE to destination
  5. Category: important upload
  6. ---
  7. This transfers the specified local file to the remote URL. If there is no file
  8. part in the specified URL, curl will append the local file name. NOTE that you
  9. must use a trailing / on the last directory to really prove to Curl that there
  10. is no file name or curl will think that your last directory name is the remote
  11. file name to use. That will most likely cause the upload operation to fail. If
  12. this is used on an HTTP(S) server, the PUT command will be used.
  13. Use the file name "-" (a single dash) to use stdin instead of a given file.
  14. Alternately, the file name "." (a single period) may be specified instead
  15. of "-" to use stdin in non-blocking mode to allow reading server output
  16. while stdin is being uploaded.
  17. You can specify one --upload-file for each URL on the command line. Each
  18. --upload-file + URL pair specifies what to upload and to where. curl also
  19. supports "globbing" of the --upload-file argument, meaning that you can upload
  20. multiple files to a single URL by using the same URL globbing style supported
  21. in the URL, like this:
  22. curl --upload-file "{file1,file2}" http://www.example.com
  23. or even
  24. curl -T "img[1-1000].png" ftp://ftp.example.com/upload/
  25. When uploading to an SMTP server: the uploaded data is assumed to be RFC 5322
  26. formatted. It has to feature the necessary set of headers and mail body
  27. formatted correctly by the user as curl will not transcode nor encode it
  28. further in any way.