Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Hi,
I am trying to execute a sh script from a perl script.
I am doing that by including the following line to the perl script
`. nameofshscript arg1toshscript arg2roshscript`;
The sh script modifies some env. variables. however when the execution returns to the perl script after the sh script is done those modification aren't visible in the perl script.
what am i doing wrong and how to correct that ?
Thanks..
Amit
Back to
Seekers of Perl Wisdom