http://qs321.pair.com?node_id=198414

anzalone has asked for the wisdom of the Perl Monks concerning the following question: (programs and processes)

I want to set an environment variable from within the perl script so that it's visible to other subsequent processes, like what export var=xyz does in unix shells.
Something like $ENV{'var'} = 'xyz' has effect only for the current process and any children it spawns.

Originally posted as a Categorized Question.