summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-05-06 12:11:53 +0200
committerDaniel Friesel <derf@finalrewind.org>2011-05-06 12:11:53 +0200
commit4c53e5138783cba5c79372c1f4aa4e4dd4fef005 (patch)
treea3aa2790e09f6efcffbf5085a84577d6d82a174a
parent54223065084fb3c14d3b73008189fbe20e4a6bed (diff)
Documentation/Version fixes
-rwxr-xr-xbin/raps211
1 files changed, 10 insertions, 1 deletions
diff --git a/bin/raps2 b/bin/raps2
index 5aa3d34..51c6a93 100755
--- a/bin/raps2
+++ b/bin/raps2
@@ -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