can we source a shell script in the perl script??
Example: Program 1:
cat test1.sh #!/bin/ksh DATE=/bin/date
program 2:
<
Yes, you can now do this with the Env::Modify module.
use Env::Modify qw(:ksh source); source("./test1.sh"); # env settings from test1.sh now available in Perl print `$ENV{DATE}`; # print `/bin/date`;