blob: 8784a84d3afaf30676a801f67d82ef11524d69ce [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001Long: limit-rate
2Arg: <speed>
3Help: Limit transfer speed to RATE
4---
5Specify the maximum transfer rate you want curl to use - for both downloads
6and uploads. This feature is useful if you have a limited pipe and you'd like
7your transfer not to use your entire bandwidth. To make it slower than it
8otherwise would be.
9
10The given speed is measured in bytes/second, unless a suffix is appended.
11Appending 'k' or 'K' will count the number as kilobytes, 'm' or M' makes it
12megabytes, while 'g' or 'G' makes it gigabytes. Examples: 200K, 3m and 1G.
13
14If you also use the --speed-limit option, that option will take precedence and
15might cripple the rate-limiting slightly, to help keeping the speed-limit
16logic working.
17
18If this option is used several times, the last one will be used.