password-store

Simple password manager using gpg and ordinary unix directories
git clone https://git.zx2c4.com/password-store
Log | Files | Refs | README | LICENSE

commit 7ff656179de5ab3b526dbf5a372ecdfcb0d7fab6
parent a9f34015d3121cfcdfdae3bba69f25a7460520b5
Author: Marvin Killing <marvinkilling@gmail.com>
Date:   Sat, 23 Feb 2013 00:27:08 +0100

Tree should follow symlinks.

Make show/ls/list follow links by passing -l to tree.

Diffstat:
Msrc/password-store.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/password-store.sh b/src/password-store.sh @@ -213,7 +213,7 @@ case "$command" in else echo "${path%\/}" fi - tree --noreport "$PREFIX/$path" | tail -n +2 | sed 's/\(.*\)\.gpg$/\1/' + tree -l --noreport "$PREFIX/$path" | tail -n +2 | sed 's/\(.*\)\.gpg$/\1/' else passfile="$PREFIX/$path.gpg" if [[ ! -f $passfile ]]; then