aboutsummaryrefslogtreecommitdiffstats
path: root/gnupg/encrypt-nosign
diff options
context:
space:
mode:
Diffstat (limited to 'gnupg/encrypt-nosign')
-rwxr-xr-xgnupg/encrypt-nosign10
1 files changed, 10 insertions, 0 deletions
diff --git a/gnupg/encrypt-nosign b/gnupg/encrypt-nosign
new file mode 100755
index 0000000..c4446b1
--- /dev/null
+++ b/gnupg/encrypt-nosign
@@ -0,0 +1,10 @@
+#!/bin/dash
+if test -z "${GPG_KEY}"; then
+ printf '\033[1;31m%s\033[0m\n' 'You must export GPG_KEY with you GPG key' >&2
+ exec 1
+else
+ for file in "$@"; do
+ gpg --encrypt -r "${GPG_KEY}" < "${file}" > "${file}.crypt"
+ done
+ printf '\033[1;34m%s\033[0m\n' '-- Do not forget to shred. --' >&2
+fi