3

What is speed measure method to upload and download ? What options do I have to give to know the speed (MB/s) ?

curl -H 'X-Auth-Token:8xxx'
http://x.x.x.x:8080/v1/AUTH_90xxxxxfccf7c/speed_test/ --upload-file
test05.txt

Thanks

lovethesky
  • 35
  • 1
  • 1
  • 6
  • Could http://stackoverflow.com/questions/9973056/curl-how-to-display-progress-information-while-uploading be helpful? – shizhz Apr 04 '17 at 04:59

1 Answers1

6

Pass the output somewhere. Use > /dev/null or -o file or -O or similar. That will make the progress meter show.

Malcolm Crum
  • 4,345
  • 4
  • 30
  • 49
Daniel Stenberg
  • 54,736
  • 17
  • 146
  • 222