diff options
author | Daniel Stenberg <daniel@haxx.se> | 2009-08-24 10:57:17 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2009-08-24 10:57:17 +0000 |
commit | 95c2b205a4e33eab9ea331428565109bde99c8a5 (patch) | |
tree | b52ed9087f9a1ecf5a4dcdd6ddebf8afc7ba6eb1 /docs | |
parent | 6ede4ce79d740e9ea9430bba7654aa8d92c6926a (diff) |
- Eric Wong introduced support for the new option -T. (dot) that makes curl
read stdin in a non-blocking fashion. This also brings back -T- (minus) to
the previous blocking behavior since it could break stuff for people at
times.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/curl.1 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/curl.1 b/docs/curl.1 index fcda7120b..563bbc4f5 100644 --- a/docs/curl.1 +++ b/docs/curl.1 @@ -1183,6 +1183,9 @@ file name to use. That will most likely cause the upload operation to fail. If 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. +Alternately, the file name "." (a single period) may be specified instead +of "-" to use stdin in non-blocking mode to allow reading server output +while stdin is being uploaded. 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 |