summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2008-07-01 00:42:44 +0200
committerDaniel Friesel <derf@derf.homelinux.org>2008-07-01 00:42:44 +0200
commit4d63f1cb436ab7c34c89e307818b83b444dbf7bf (patch)
tree713a4329f9b85691b7b956246ead8bcb87cc658d
parent583c5ebef24e101c30a86a14d825b31dfa3fb07a (diff)
Added manpage
-rw-r--r--man/1/envstore70
1 files changed, 70 insertions, 0 deletions
diff --git a/man/1/envstore b/man/1/envstore
new file mode 100644
index 0000000..cb42977
--- /dev/null
+++ b/man/1/envstore
@@ -0,0 +1,70 @@
+=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>
+
+Save I<variable>
+
+=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 BUGS
+
+The author is insane.
+
+=head1 AUTHOR
+
+Maximilian Gass <mxey@cloudconnected.org>
+
+This manual was written by Daniel Friesel because the original program did not
+have one.
+
+=cut
+
+vim:ft=pod