blob: 396cd88e74ed7c8039d14f166e61e9c03d4bf6ab (
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
|
=pod
=head1 NAME
envify - execute a command in the environment saved with envstore
=head1 SYNOPSIS
B<envify> I<command>...
=head1 DESCRIPTION
B<envify> loads the environment saved by B<envstore> and then executes I<command>.
=head1 LIMITATIONS
The envstore(1) limitations for null bytes apply here as well.
By default, newlines are not supported. However, if you remove the newline from
the B<IFS> when calling envstore, newlines should work.
Example: C<< IFS=' ' envstore I<command> I<arguments>... >>
=head1 SEE ALSO
envstore(1)
=cut
vim:ft=pod
|