The bashupload is a place to upload files from command line or other ways and download them elsewhere.

How to enable upload progress in curl

In order to show upload progress, you have to redirect curl output ("o" option) to a temp file and include "#" option in the command line. After the upload is finished, you can delete output file. Complete command example: curl -o /tmp/_bu.tmp -# https://bashupload.com/name.txt --data-binary @file.txt && cat /tmp/_bu.tmp && rm /tmp/_bu.tmp

It will look like this:

More articles