2019-02-24 14:48:54 -06:00
|
|
|
# pash
|
|
|
|
|
|
|
|
A simple password manager using GPG.
|
|
|
|
|
2019-02-24 16:04:26 -06:00
|
|
|
|
|
|
|
## Dependencies
|
|
|
|
|
|
|
|
- `bash`
|
|
|
|
- `gpg2`
|
|
|
|
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
2019-02-24 16:05:02 -06:00
|
|
|
Examples: `pash add web/gmail`, `pash list`, `pash del google`, `pash show github`.
|
2019-02-24 16:04:26 -06:00
|
|
|
|
|
|
|
```
|
|
|
|
pash - simple password manager.
|
|
|
|
usage: pash [add|del|show|list] [name] [-n,-q,-c] [-l length]
|
|
|
|
|
|
|
|
-n Limit passwords to alphanumeric characters.
|
|
|
|
-l length Length of generated passwords.
|
|
|
|
-c Copy password to clipboard.
|
|
|
|
-q Don't print password to stdout.
|
|
|
|
-h Print this message.
|
|
|
|
-v Show version.
|
|
|
|
```
|
|
|
|
|
2019-02-24 14:48:54 -06:00
|
|
|
## TODO
|
|
|
|
|
2019-02-24 15:07:37 -06:00
|
|
|
- [x] Add support for not generating passwords.
|
2019-02-24 15:48:31 -06:00
|
|
|
- [x] Add support for categories.
|
|
|
|
- [ ] Add an optional `tree` view.
|
2019-02-24 16:04:26 -06:00
|
|
|
- [ ] Add support for both `gpg` and `gpg2`.
|
2019-02-24 15:28:13 -06:00
|
|
|
- [ ] Man page.
|
|
|
|
- [ ] Setup automatic linting.
|
|
|
|
- [ ] Documentation.
|