Created
November 17, 2019 08:19
-
-
Save jamesattard/68c0f07fa3fcc276c681a7414bb8a6cf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Functions | |
function enc() { gpg --output $1.e --encrypt --recipient [email protected] $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