From a9095a061997935da10abe5bd35ded7522747a6b Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sun, 16 Feb 2020 17:59:06 +0200 Subject: [PATCH] gpg export aliases, resolves: #58 --- rc/bashrc | 2 ++ rc/zshrc | 2 ++ 2 files changed, 4 insertions(+) diff --git a/rc/bashrc b/rc/bashrc index 9d740152..5c2995f1 100644 --- a/rc/bashrc +++ b/rc/bashrc @@ -485,6 +485,8 @@ alias wkdlookup="gpg --auto-key-locate nodefault,wkd --locate-keys" # Ubuntu key server, Tor not necessary due to dirmngr config alias gpg-uks="gpg --keyserver hkps://keyserver.ubuntu.com" alias gpg-uks-recv="gpg --keyserver hkps://keyserver.ubuntu.com --recv-keys" +alias gpg-export-minimal-ascii="gpg --armor --export-options export-minimal --export" +alias gpg-export-minimal-binary="gpg --no-armor --export-options export-minimal --export" # ports that are being listened to alias netstat-listening-ports="netstat -plnt" diff --git a/rc/zshrc b/rc/zshrc index 00f44bb2..0f5d5783 100644 --- a/rc/zshrc +++ b/rc/zshrc @@ -464,6 +464,8 @@ alias wkdlookup="gpg --auto-key-locate nodefault,wkd --locate-keys" # Ubuntu key server, Tor not necessary due to dirmngr config alias gpg-uks="gpg --keyserver hkps://keyserver.ubuntu.com" alias gpg-uks-recv="gpg --keyserver hkps://keyserver.ubuntu.com --recv-keys" +alias gpg-export-minimal-ascii="gpg --armor --export-options export-minimal --export" +alias gpg-export-minimal-binary="gpg --no-armor --export-options export-minimal --export" # ports that are being listened to alias netstat-listening-ports="netstat -plnt"