mirror of
https://github.com/nishiki/manage-password.git
synced 2024-11-27 07:33:05 +00:00
update readme
This commit is contained in:
parent
6ca9e8bffe
commit
240af672ab
1 changed files with 29 additions and 2 deletions
31
README.md
31
README.md
|
@ -13,17 +13,44 @@ This program work with ruby >= 2.0
|
||||||
# How to use
|
# How to use
|
||||||
|
|
||||||
* Show help
|
* Show help
|
||||||
|
```
|
||||||
mpw --help
|
mpw --help
|
||||||
|
```
|
||||||
|
|
||||||
* Setup a new config file
|
* Setup a new config file
|
||||||
|
```
|
||||||
mpw --setup
|
mpw --setup
|
||||||
mpw --setup --config /path/conf/file.cfg
|
mpw --setup --config /path/conf/file.cfg
|
||||||
|
```
|
||||||
|
|
||||||
* Create and setup a new wallet
|
* Create and setup a new wallet
|
||||||
|
```
|
||||||
mpw --setup-wallet --wallet new_wallet_name
|
mpw --setup-wallet --wallet new_wallet_name
|
||||||
mpw --setup-wallet --wallet new_wallet_name --config /path/conf/file.cfg
|
mpw --setup-wallet --wallet new_wallet_name --config /path/conf/file.cfg
|
||||||
|
```
|
||||||
|
|
||||||
|
* Add a GPG key in wallet
|
||||||
|
```
|
||||||
|
mpw --add --key root@localhost.local
|
||||||
|
mpw --add --key root@localhost.local --config /path/conf/file.cfg
|
||||||
|
mpw --add --key root@localhost.local --wallet wallet_name
|
||||||
|
mpw --add --key root@localhost.local --config /path/conf/file.cfg --wallet wallet_name
|
||||||
|
```
|
||||||
|
|
||||||
|
* Add a new GPG key in wallet
|
||||||
|
```
|
||||||
|
mpw --add --key root@localhost.local --file /path/gpg/file.pub
|
||||||
|
mpw --add --key root@localhost.local --file /path/gpg/file.pub --config /path/conf/file.cfg
|
||||||
|
mpw --add --key root@localhost.local --file /path/gpg/file.pub --wallet wallet_name
|
||||||
|
mpw --add --key root@localhost.local --file /path/gpg/file.pub --config /path/conf/file.cfg --wallet wallet_name
|
||||||
|
```
|
||||||
|
|
||||||
|
* Delete a GPG key in wallet
|
||||||
|
```
|
||||||
|
mpw --delete --key root@localhost.local
|
||||||
|
mpw --delete --key root@localhost.local --wallet wallet_name
|
||||||
|
mpw --delete --key root@localhost.local --wallet wallet_name --config /path/conf/file.cfg
|
||||||
|
```
|
||||||
|
|
||||||
* Add a new item in wallet
|
* Add a new item in wallet
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue