aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-08-09 12:36:17 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-08-09 12:36:17 +0000
commitb5cafc0b8322b10dcd4ed4153b295e0e1b4dd713 (patch)
tree2c4641d37795cd570b623ec3325cd4c5a79e733d /docs
parentc50ced6cc2211dd7f854e0eb5edb25960a6c0c7b (diff)
added info about my current idea about option separation between URLs on
the command line
Diffstat (limited to 'docs')
-rw-r--r--docs/TODO10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/TODO b/docs/TODO
index 7e87c56ac..9e42ea1b2 100644
--- a/docs/TODO
+++ b/docs/TODO
@@ -175,14 +175,14 @@ TODO
http://curl.haxx.se/mail/archive-2003-11/0091.html (Kevin Roth suggested)
* Provide a way to make options bound to a specific URL among several on the
- command line. Possibly by adding a new option that separates options
- between URLs, similar to this:
+ command line. Possibly by letting ':' separate options between URLs,
+ similar to this:
- curl --data foo --url url.com --optionseparator
- --url url2.com --optionseparator \
+ curl --data foo --url url.com :
+ --url url2.com : \
--url url3.com --data foo3
- (--optionseparator used to show my point, it would need a better name)
+ (More details: http://curl.haxx.se/mail/archive-2004-07/0133.html)
The example would do a POST-GET-POST combination on a single command line.