]> gitweb.fluxo.info Git - scripts.git/commitdiff
Feat: adds tombopen
authorSilvio Rhatto <rhatto@riseup.net>
Sat, 20 Feb 2021 12:19:38 +0000 (09:19 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Sat, 20 Feb 2021 12:19:38 +0000 (09:19 -0300)
tombopen [new file with mode: 0755]

diff --git a/tombopen b/tombopen
new file mode 100755 (executable)
index 0000000..33aa1e7
--- /dev/null
+++ b/tombopen
@@ -0,0 +1,26 @@
+#/usr/bin/env bash
+#
+# Open a Tomb.
+#
+
+# Parameters
+BASENAME="`basename $0`"
+TOMB="$1"
+TOMBS="$HOME/data/tombs"
+KEYS="$HOME/.tombs"
+
+# Check
+if [ ! -d "$TOMBS" ]; then
+  echo "error: no cemetery available at $TOMBS"
+  exit 1
+elif [ -z "$TOMB" ]; then
+  echo "usage: $BASENAME <tomb>"
+  echo "available tombs: `ls $TOMBS | xargs basename -a -s .tomb | xargs echo`"
+  exit 1
+elif [ ! -e "$KEYS/$TOMB.tomb.key" ]; then
+  echo "missing keyfile $KEYS/$TOMB.tomb.key"
+  exit 1
+fi
+
+# Dispatch
+tomb open $TOMBS/$TOMB.tomb -k $KEYS/$TOMB.tomb.key