aboutsummaryrefslogtreecommitdiff
path: root/lib/keyringer/actions/tree
diff options
context:
space:
mode:
Diffstat (limited to 'lib/keyringer/actions/tree')
-rwxr-xr-xlib/keyringer/actions/tree19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/keyringer/actions/tree b/lib/keyringer/actions/tree
new file mode 100755
index 0000000..2033abd
--- /dev/null
+++ b/lib/keyringer/actions/tree
@@ -0,0 +1,19 @@
+#!/bin/bash
+#
+# List keys.
+#
+
+# Load functions
+LIB="`dirname $0`/../functions"
+source "$LIB" || exit 1
+
+# Aditional parameters
+CWD="`pwd`"
+
+# Avoid leading slash
+shift
+ARGS="`echo "$*" | sed -e "s|^/*||"`"
+
+# Run list command
+cd "$KEYDIR" && tree $ARGS
+cd "$CWD"