diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2009-04-17 20:09:25 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2009-04-17 20:09:25 +0200 |
commit | 81dfdb2cb17607ce1b437a5e5ea6576bbf3ae8d4 (patch) | |
tree | 21df4e1f99a66e0ae67d14b1c4538b8bf2ca4da5 | |
parent | d984099db18a8235e4e08278bd53ff79052770f9 (diff) |
Added manual to perl file
-rwxr-xr-x | bin/envstore | 40 | ||||
-rw-r--r-- | man/1/envstore | 63 |
2 files changed, 40 insertions, 63 deletions
diff --git a/bin/envstore b/bin/envstore index 289777b..5c27b22 100755 --- a/bin/envstore +++ b/bin/envstore @@ -92,3 +92,43 @@ if ($action eq 'save') { print STDERR "Usage: envstore <save|eval|show|rm|clear> [args]\n"; exit(1); } +__END__ + +=head1 NAME + +envstore - save and restore environment variables + +=head1 SYNOPSIS + +B<envstore> I<command> [ I<arguments> ] + +=head1 DESCRIPTION + +envstore can safe and restore environment variables, thus transferring them +between different shells. + +I<command> must be one of + +=over + +=item B<clear> + +Forget all stored variables + +=item B<eval> + +Produce shell code for evaluation, restoring all saved variables + +=item B<save> I<variable>[=I<value>] + +Save I<variable> either with it's current shell value or with I<value> + +=item B<show> + +List saved variables in better readable format + +=item B<rm> I<variable> + +Remove I<variable> from store + +=back diff --git a/man/1/envstore b/man/1/envstore deleted file mode 100644 index 67d44ff..0000000 --- a/man/1/envstore +++ /dev/null @@ -1,63 +0,0 @@ -=pod - -=head1 NAME - -envstore - save and restore environment variables - -=head1 SYNOPSIS - -B<envstore> I<command> [ I<arguments> ] - -=head1 DESCRIPTION - -envstore can safe and restore environment variables, thus transferring them -between different shells - -I<command> must be one of - -=over - -=item B<clear> - -Forget all stored variables - -=item B<eval> - -Produce shell code for evaluation, restoring all saved variables - -=item B<save> I<variable>[=I<value>] - -Save I<variable> either with it's current shell value or with I<value> - -=item B<show> - -List saved variables in better readable format - -=item B<rm> I<variable> - -Remove I<variable> from store - -=back - -=head1 FILES - -=over - -=item F</tmp/envstore->I<uid> - -Contains the stored variables in a python database (pickle) format - -=item F</tmp/envstore-raw->I<uid> - -Contains the stored variables as plain text, like the output of 'eval'. -May be used for inclusion in shell startup files. - -=back - -=head1 AUTHOR - -Maximilian Gass <mxey@cloudconnected.org> - -=cut - -vim:ft=pod |