diff options
author | David Thompson <davet@gnu.org> | 2015-05-25 00:28:03 -0400 |
---|---|---|
committer | David Thompson <davet@gnu.org> | 2015-05-25 00:28:03 -0400 |
commit | 101a426a269c2f038068514f67cd0605f3f54698 (patch) | |
tree | cf6f532d9c0ecc9a9131392dda674dc244db9e34 /README |
First commit.
Diffstat (limited to 'README')
-rw-r--r-- | README | 37 |
1 files changed, 37 insertions, 0 deletions
@@ -0,0 +1,37 @@ +-*- mode: org -*- + +Shroud is a simple password manager with a command line interface. +The password database is stored as a Scheme s-expression and encrypted +with a [[gnupg.org][GnuPG]] key. + +* Usage + + #+BEGIN_SRC sh + # Add a new password + shroud add "bank account" hackme + + # Show a saved password + shroud show "bank account" + + # Show all passwords + shroud list-all + + # Delete a password + shroud remove "personal email" + + # Delete all passwords + shroud clear + #+END_SRC + +* Dependencies + + - GNU Guile >= 2.0.11 + - GnuPG >= 1.4 + +* Installation + + Shroud uses the familiar GNU build system. + + #+BEGIN_SRC sh + ./bootstrap && ./configure && make && make install + #+END_SRC |