1
0
mirror of https://github.com/octoleo/Purse.git synced 2024-11-17 02:25:13 +00:00
Purse/README.md

25 lines
702 B
Markdown
Raw Normal View History

2015-07-02 00:52:01 +00:00
# pwd.sh
2015-07-02 02:11:49 +00:00
GnuPG wrapper for password management.
This script uses GPG to manage an encrypted text file containing passwords.
# Requirements
Requires `gpg`. Install with `brew install gpg` or `apt-get install gnupg` or build and install it from [source](https://www.gnupg.org/download/index.html).
# Installation
git clone https://github.com/drduh/pwd.sh && cd pwd.sh
# Use
Run the script with `./pwd.sh`
Type `w` to create a password. Will update existing password with same Username/ID.
Type `r` to print stored passwords. Can be piped to `grep` and `pbcopy` or `xsel`, for example.
2015-07-02 02:31:38 +00:00
Type `d` to delete a password by Username/ID.
2015-07-02 02:11:49 +00:00
To reset/erase keys and passwords, `rm pwd.sh.*`.
2015-07-02 02:03:55 +00:00