Skip to content

Instantly share code, notes, and snippets.

@jamesattard
Created November 17, 2019 08:19
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 jamesattard/68c0f07fa3fcc276c681a7414bb8a6cf to your computer and use it in GitHub Desktop.
Save jamesattard/68c0f07fa3fcc276c681a7414bb8a6cf to your computer and use it in GitHub Desktop.
# Functions
function enc() { gpg --output $1.e --encrypt --recipient info@jamesattard.com $1; }
function dec() { gpg --output $1 --decrypt $1.e; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment