summaryrefslogtreecommitdiff
path: root/man/1/envstore
blob: 67d44ff3a351e220bf776a906b665e4b3e95037f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
=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