diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-10-12 12:14:09 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-10-12 12:14:09 +0000 |
commit | da86e32eb4207887d2d30d395dd721341c1c7930 (patch) | |
tree | e00f95124256ed351a1372bb9df38b159918ff7d /docs/MANUAL | |
parent | b5bbc04ad1fa584b0862925daecfb48dbdcb70c1 (diff) |
-y and -Y was switched in the examples
Diffstat (limited to 'docs/MANUAL')
-rw-r--r-- | docs/MANUAL | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/MANUAL b/docs/MANUAL index e496f0243..95211ed63 100644 --- a/docs/MANUAL +++ b/docs/MANUAL @@ -404,12 +404,12 @@ SPEED LIMIT To have curl abort the download if the speed is slower than 3000 bytes per second for 1 minute, run: - curl -y 3000 -Y 60 www.far-away-site.com + curl -Y 3000 -y 60 www.far-away-site.com This can very well be used in combination with the overall time limit, so that the above operatioin must be completed in whole within 30 minutes: - curl -m 1800 -y 3000 -Y 60 www.far-away-site.com + curl -m 1800 -Y 3000 -y 60 www.far-away-site.com CONFIG FILE |