The bashupload is a place to upload files from command line or other ways and download them elsewhere.
How to encrypt files before upload
In order to ensure best security, you should encrypt your files with critical content before uploading to any service. That's easily done with gpg:
gpg -ac -o- test.txt | curl https://bashupload.com/encrypted.txt --data-binary @-
After downloading encrypted file to another server/device, use this command to decrypt it:
curl https://bashupload.com/ca8H/encrypted.txt | gpg -d -o decrypted.txt
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