aboutsummaryrefslogtreecommitdiff
path: root/.scripts/decrypt
diff options
context:
space:
mode:
Diffstat (limited to '.scripts/decrypt')
-rwxr-xr-x.scripts/decrypt6
1 files changed, 6 insertions, 0 deletions
diff --git a/.scripts/decrypt b/.scripts/decrypt
new file mode 100755
index 0000000..d509492
--- /dev/null
+++ b/.scripts/decrypt
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+set -e
+
+gpg -u "Master" --decrypt --armor -o "$1.dec" "$1"
+mv "$1.dec" "$1"