Skip to content

Instantly share code, notes, and snippets.

@joeybeninghove
Created February 16, 2018 04:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joeybeninghove/a46507802f049cdf5373b2719d056f79 to your computer and use it in GitHub Desktop.
Save joeybeninghove/a46507802f049cdf5373b2719d056f79 to your computer and use it in GitHub Desktop.
Encrypted File Transfer
cat <file_name> | gpg -ac -o- | curl -X PUT -T "-" https://transfer.sh/<file_name>.gpg
curl https://transfer.sh/<hash>/<file_name>.gpg | gpg -o- > <file_name>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment