spm

Personal fork of spm (simple password manager)

commit ff5090c61f835ca4927330756a4a3bb813fbf359
parent 156e0496a7f7af8dd4911fe068ff9738daca0ffd
Author: Klemens Nanni <kl3@posteo.org>
Date: Sun, 22 Oct 2017 13:06:48 +0200

Simplify README
1 file changed, 8 insertions(+), 14 deletions(-)
M
README.md
|
22
++++++++--------------
diff --git a/README.md b/README.md
@@ -4,21 +4,15 @@ spm - simple password manager
 spm is a single fully POSIX shell compliant script utilizing gpg2(1) in
 combination with basic tools such as find(1) and tree(1).
 
-spm stores everything in a directory structure where passwords correspond to
-individually [PGP](https://gnupg.org/) encrypted files, optionally residing inside nested
-subdirectories of arbitrary depth, where any subdirectory can be interpreted
-as a (sub)group to manage large collections easily.
+Passwords are stored as [PGP](https://gnupg.org) encrypted files with
+directories funtioning as (sub)groups.
 
-This project started as a fork of mneum's [tpm](https://github.com/nmeum/tpm) which at that time was lacking
-crucial features such as removing or listing existent entries (it still does).
+spm reads/writes passwords via standard input/output allowing you to build
+flexible and powerful management tools.
 
-spm works perfectly with standard input and output allowing easy integration
-with other tools to create a truely flexible and powerful password management
-tool.
+Refer to the manual page for various examples or read its source code to see
+how it works.
 
-Refer to the manual page for various examples or simply read its source code.
+----
 
----
-
-*.sh/spm* from my [dotfiles](https://notabug.org/kl3/dotfiles) repository also illustrates an easy way to integrate
-spm.
+spm started as [tpm](https://github.com/nmeum/tpm) fork.