git clone https://orangeshoelaces.net/git/pss.git
Author: Vasilii Kolobkov on 01/02/2019
Committer: Vasilii Kolobkov on 01/02/2019
Add README
README | 36 ++++++++
pss | 2 +-
2 files changed, 37 insertions(+), 1 deletion(-)
diff --git a/README b/README
new file mode 100644
index 0000000..0e23e84
--- /dev/null
+++ b/README
@@ -0,0 +1,36 @@
+pss
+Copyright 2018, 2019 Vasilii Kolobkov
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see <https://www.gnu.org/licenses/>.
+
+
+Passwords, secrets and stuff. All that encrypted with PGP to
+yourself and stored in a single file.
+
+Secrets file is made of newline-separated records of following form:
+ <name>FS<password>FS<resource>FS<notes>
+where FS is value of 'field_sepator' variable. Empty lines, ones made
+of whitespace and those beginning with '#' are ignored.
+
+Usage:
+pss [-n|-yn|-p|-yp] <key>
+ Print out (or copy into X clipboard with 'y') name ('n')
+ or password ('p') for a record with a name, resource or notes
+ unambiguously matching a given key. Matching is tested for
+ substrings of the field.
+pss -a
+ Add new record either interactively or not.
+
+So far it lacks some useful functions, like editing and deleting records,
+which you can carry out with your shell in the meantime.
diff --git a/pss b/pss
index e74e364..550abc0 100755
--- a/pss
+++ b/pss
@@ -1,7 +1,7 @@
#!/bin/sh
# Passwords, secrets and stuff
-# Copyright 2018 Vasilii Kolobkov
+# Copyright 2018, 2019 Vasilii Kolobkov
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by