cURL - notify about upload progress cURL - notify about upload progress curl curl

cURL - notify about upload progress


Redirect the output somewhere and the progress bar will show up. The reason it is shut off in your case is that you've asked curl to send the downloaded data to stdout and then it shuts off the progress meter automatically to not mess up the output.

So, redirect with > in the shell or use one of curl's -o (lower case letter o) or -O (upper case letter o) options.