diff options
author | Daniel Friesel <derf@finalrewind.org> | 2011-05-16 10:57:17 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2011-05-16 10:57:17 +0200 |
commit | 06d064c1d6ba7a98c32527c0ca865c73fd65458e (patch) | |
tree | 6087dae2fa896602c995b88568e5646ee0f036cd /bin | |
parent | 60698a2b128a60d16ab87ade05cf88b8ad28800f (diff) |
Add "raps2 del"
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/raps2 | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -19,6 +19,7 @@ $raps2->load_config(); given ($action) { when ('add') { $raps2->cmd_add(@args) } + when ('del') { $raps2->cmd_remove(@args) } when ('dump') { $raps2->cmd_dump(@args) } when ('get') { $raps2->cmd_get(@args) } when ('info') { $raps2->cmd_info(@args) } @@ -59,6 +60,10 @@ Adds I<account> to the store. It will ask you for the store's master password, some metadata and the new password and then store them. Note that only the password is encrypted, the metadata is saved as clear-text. +=item B<del> I<account> + +Remove I<account> from the store. + =item B<dump> I<account> Dump everything saved for I<account>, including the clear-text password, to |