Query: env::sanctify
OS: debian
Section: 3pm
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
Env::Sanctify(3pm) User Contributed Perl Documentation Env::Sanctify(3pm)NAMEEnv::Sanctify - Lexically scoped sanctification of %ENVVERSIONversion 1.06SYNOPSISmy $sanctify = Env::Sanctify->sanctify( sanctify => [ '^POE' ] ); # do some stuff, fork some processes etc. $sanctify->restore { my $sanctify = Env::Sanctify->sanctify( env => { POE_TRACE_DEFAULT => 1 } ); # do some stuff, fork some processes etc. } # out of scope, %ENV is back to normalDESCRIPTIONEnv::Sanctify is a module that provides lexically scoped manipulation and sanctification of %ENV. You can specify that it alter or add additional environment variables or remove existing ones according to a list of matching regexen. You can then either "restore" the environment back manually or let the object fall out of scope, which automagically restores. Useful for manipulating the environment that forked processes and sub-processes will inherit.CONSTRUCTOR"sanctify" Creates an Env::Sanctify object. Takes two optional arguments: 'env', a hashref of env vars to add to %ENV; 'sanctify', an arrayref of regex pattern strings to match against current %ENV vars; Any %ENV var that matches a "sanctify" regex is removed from the resultant %ENV. METHODs "restore" Explicitly restore the previous %ENV. This is called automagically when the object is "DESTROY"ed, for instance, when it goes out of scope.AUTHORChris Williams <chris@bingosnet.co.uk>COPYRIGHT AND LICENSEThis software is copyright (c) 2012 by Chris Williams. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-03-14 Env::Sanctify(3pm)
Related Man Pages |
---|
env(3pm) - suse |
env(3pm) - osx |
env5.18(3pm) - mojave |
env::sanctify(3pm) - debian |
test::valgrind::command(3pm) - debian |
Similar Topics in the Unix Linux Community |
---|
need help.. ! Production Env. |
Source Env file in the Shell Script |
Some help with Perl please |
Env variable |
Profile environment variables lost after mksysb restore |