-*- 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 secret shroud hide --id=bank-account --username=foobar --password=hackme # Replace an existing secret shroud hide --replace --id=bank-account --username=foobar --password=hackmepls # Show a saved password shroud show bank-account # Delete a password shroud remove bank-account #+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