diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-09-23 12:20:07 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-09-23 12:20:07 +0000 |
commit | 588b63a05b7d82c0e1a9b2687820f3661608cd91 (patch) | |
tree | becc7e951bd53e646d9505be1760dd7dd73cea8f | |
parent | a5c2a86649f84969c7ac475e0481c18d68e6d81b (diff) | |
download | curl-588b63a05b7d82c0e1a9b2687820f3661608cd91.tar.gz |
documented the new 7.10.8 -T functionality
-rw-r--r-- | docs/curl.1 | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/docs/curl.1 b/docs/curl.1 index e58dce04e..7c042780e 100644 --- a/docs/curl.1 +++ b/docs/curl.1 @@ -669,7 +669,19 @@ this is used on a http(s) server, the PUT command will be used. Use the file name "-" (a single dash) to use stdin instead of a given file. -If this option is used several times, the last one will be used. +Before 7.10.8, when this option was used several times, the last one was used. + +In curl 7.10.8 and later, you can specify one -T for each URL on the command +line. Each -T + URL pair specifies what to upload and to where. curl also +supports "globbing" of the -T argument, meaning that you can upload multiple +files to a single URL by using the same URL globbing style supported in the +URL, like this: + +curl -T "{file1,file2}" http://www.uploadtothissite.com + +or even + +curl -T "img[1-1000].png" ftp://ftp.picturemania.com/upload/ .IP "--trace <file>" Enables a full trace dump of all incoming and outgoing data, including descriptive information, to the given output file. Use "-" as filename to have |