From 44c1c2b4764c87b6ff3513e47aadf9f59ccdd166 Mon Sep 17 00:00:00 2001 From: Adrien Waksberg Date: Fri, 3 Mar 2017 22:42:30 +0100 Subject: [PATCH] update readme --- README.md | 39 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fa81df6..6b32418 100644 --- a/README.md +++ b/README.md @@ -7,10 +7,11 @@ mpw is a little software which stores your passwords in [GnuPG](http://www.gnupg ## Features + * generate random password * generate OTP code - * synchronize your passwords with SSH or FTP. * copy your login, password or otp in clipboard * manage many wallets + * synchronize your passwords with SSH or FTP. * share a wallet with others GPG keys ## Install @@ -108,3 +109,39 @@ Add synchronize: ``` mpw wallet --protocol ssh --host example.com --user test --path /remote/path --password ``` + +### Export and import data + +You can export your data in yaml file with your passwords in clear text: +``` +mpw export --file export.yml +``` + +Import data from an yaml file: +``` +mpw import --file import.yml +``` + +Example yaml file for mpw: + +``` +--- +1: + host: bank.com + user: 123456 + group: Bank + password: secret + protocol: https + port: + otp_key: 1afg34 + comment: +2: + host: linuxfr.org + user: example + group: + password: 'complex %- password' + protocol: https + port: + otp_key: + comment: Da Linux French Site +```