Purse/README.md

47 lines
1.5 KiB
Markdown
Raw Normal View History

2015-07-02 00:52:01 +00:00
# pwd.sh
2015-07-02 02:11:49 +00:00
2015-07-03 04:52:34 +00:00
Script to manage passwords in an encrypted file using gpg.
2015-07-02 02:11:49 +00:00
![screencast gif](https://i.imgur.com/sQoF3VN.gif)
2015-07-02 02:11:49 +00:00
# Installation
git clone https://github.com/drduh/pwd.sh && cd pwd.sh
2015-07-03 04:52:34 +00:00
Requires `gpg`. Install with `brew install gpg` or `sudo apt-get install gnupg` or build and install it from [source](https://www.gnupg.org/download/index.html).
2015-07-03 04:52:34 +00:00
2015-07-02 02:11:49 +00:00
# Use
Run the script interactively with `./pwd.sh`
Type `w` to write a password.
2015-07-02 02:11:49 +00:00
Type `r` to read a password(s).
2015-07-02 02:11:49 +00:00
Type `d` to delete a password.
2015-07-02 02:31:38 +00:00
Options can also be passed on the command line. Here are some examples:
`./pwd.sh w gmail 30` to create a password for 'gmail' with a length of 30 characters. Append `<space>q` to suppress password output.
`./pwd.sh r user@github` to read the password for 'user@github'.
`./pwd.sh d dropbox` to delete the password for 'dropbox'.
Combine with other programs by piping output, e.g.,
`./pwd.sh r github | grep github | cut -f1 -d ' ' | pbcopy` to copy a password to clipboard on OS X.
The script and `pwd.sh.safe` encrypted file can be safely shared between machines over public channels (Google Drive, Dropbox, etc).
2015-07-02 02:03:55 +00:00
A sample `gpg.conf` configuration file is provided for your consideration.
2015-09-21 23:23:13 +00:00
# Similar software
[Pass: the standard unix password manager](http://www.passwordstore.org/)
2015-09-21 23:23:13 +00:00
[caodonnell/passman.sh: a pwd.sh fork](https://github.com/caodonnell/passman.sh)
[anders/pwgen: generate passwords using OS X Security framework](https://github.com/anders/pwgen)
2015-08-07 18:11:11 +00:00