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
- How to upload file to server
- How to encrypt files before upload
- How to upload multiple files
- How to enable upload progress in curl
- How to upload a directory
- How to upload file through terminal
- How to upload file from one server to another
- How to upload file from desktop to server
- How to upload file from mobile to server