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