diff options
author | Daniel Friesel <derf@finalrewind.org> | 2011-05-06 12:11:53 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2011-05-06 12:11:53 +0200 |
commit | 4c53e5138783cba5c79372c1f4aa4e4dd4fef005 (patch) | |
tree | a3aa2790e09f6efcffbf5085a84577d6d82a174a /bin/raps2 | |
parent | 54223065084fb3c14d3b73008189fbe20e4a6bed (diff) |
Documentation/Version fixes
Diffstat (limited to 'bin/raps2')
-rwxr-xr-x | bin/raps2 | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -12,6 +12,8 @@ use App::Raps2; my $raps2 = App::Raps2->new(); my ($action, @args) = @ARGV; +my $VERSION = '0.1'; + $raps2->sanity_check(); $raps2->load_config(); @@ -20,6 +22,7 @@ given ($action) { when ('dump') { $raps2->cmd_dump(@args) } when ('get') { $raps2->cmd_get(@args) } when ('info') { $raps2->cmd_info(@args) } + when ('version') { say "raps2 version ${VERSION}" } } __END__ @@ -32,6 +35,10 @@ raps2 - "Right, Another Password Store" take two B<raps2> I<action> I<args ...> +=head1 VERSION + +This manual documents B<raps2> version 0.1 + =head1 DESCRIPTION raps2 is a simple password safe. You give it a name, a password and optional @@ -73,7 +80,9 @@ zero on success, non-zero otherwise. =head1 CONFIGURATION -None so far. +raps2 saves the master password hash in F<~/.config/raps2/password>. + +Additional encrypted passwords are stored in F<~/.local/share/raps2/>. =head1 DEPENDENCIES |