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 14 Use the file name "-" (a single dash) to use stdin instead of a given file. 15 Alternately, the file name "." (a single period) may be specified instead 16 of "-" to use stdin in non-blocking mode to allow reading server output 17 while stdin is being uploaded. 18 19 You can specify one --upload-file for each URL on the command line. Each 20 --upload-file + URL pair specifies what to upload and to where. curl also 21 supports "globbing" of the --upload-file argument, meaning that you can upload 22 multiple files to a single URL by using the same URL globbing style supported 23 in the URL, like this: 24 25 curl --upload-file "{file1,file2}" http://www.example.com 26 27 or even 28 29 curl -T "img[1-1000].png" ftp://ftp.example.com/upload/ 30 31 When uploading to an SMTP server: the uploaded data is assumed to be RFC 5322 32 formatted. It has to feature the necessary set of headers and mail body 33 formatted correctly by the user as curl will not transcode nor encode it 34 further in any way. 35