Encrypt with GPG on the commandline 2008-10-31 11:34am
If you want to encrypt something you type on the command line it's pretty simple:
gpg --recipient scott@perturb.org --encrypt --armor
Or shorter:
gpg -r scott@perturb.org -e -a
Decrypting is really easy:
gpg -d




