summaryrefslogtreecommitdiff
path: root/wr/mdsec
diff options
context:
space:
mode:
authorGeorge Abbott <george@gabbott.dev>2023-10-31 17:54:07 +0000
committerGeorge Abbott <george@gabbott.dev>2023-10-31 17:54:07 +0000
commit4d0bd914e7c1ee65f4036e60149a7b891906a5d3 (patch)
treec2a6751823e064e003cd4f6166df07bfc106d7eb /wr/mdsec
Commit all to date.
Diffstat (limited to 'wr/mdsec')
-rwxr-xr-xwr/mdsec28
1 files changed, 28 insertions, 0 deletions
diff --git a/wr/mdsec b/wr/mdsec
new file mode 100755
index 0000000..031f5a7
--- /dev/null
+++ b/wr/mdsec
@@ -0,0 +1,28 @@
+#!/bin/sh
+# mdsec: modify a secure entry, writing it back after.
+
+[ -z "$DEFAULT_GPG" ] && echo "DEFAULT_GPG not set" && return
+[ ! -f "$HOME/docs/wr/sec/$1" ] && echo "File $1 does not exist" && return
+mkdir -p "/tmp/mksec"
+
+# File names
+temp="/tmp/mksec/$1.decrypted"
+ck="/tmp/mksec/$1-modck.decrypted"
+src="$HOME/docs/wr/sec/$1"
+dest="$src"
+
+
+gpg -d --output "$temp" "$src"
+cp "$temp" "$ck"
+nvim "$temp"
+
+# Only try to save if a modification has been made, tested with modification
+# date, where the edited file should only be -nt if its been modified/saved.
+if [ "$temp" -nt "$ck" ] ; then
+ gpg --encrypt --armor --symmetric -r "$DEFAULT_GPG" --output "$dest" "$temp"
+else
+ printf "No modification made - no changes saved\n"
+fi
+
+shred -u "$temp"
+shred -u "$ck"