From 101a426a269c2f038068514f67cd0605f3f54698 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Mon, 25 May 2015 00:28:03 -0400 Subject: First commit. --- README | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 README (limited to 'README') diff --git a/README b/README new file mode 100644 index 0000000..ba3f1a9 --- /dev/null +++ b/README @@ -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 -- cgit v1.2.3