spm

simple password manager
git clone anongit@rnpnr.xyz:spm.git
Log | Files | Refs | Feed | README | LICENSE

Commit: 46e615cfdaf8ea9181450030177ccdee3df931ad
Parent: ad7a30df3c5b256dd0e1aaf4098090eb38df0e66
Author: nmeum
Date:   Fri, 10 Jan 2014 16:33:03 +0100

Don't use long flags since they are only supported by the GNU corutils

Diffstat:
Mtpm | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tpm b/tpm @@ -62,7 +62,7 @@ insert() { abort "You didn't specify a password." fi - mkdir --parents "$(dirname "${entry_path}")" + mkdir -p "$(dirname "${entry_path}")" gpg2 ${GPG_OPTS} --encrypt --output "${entry_path}" <<< "${password}" }