in reply to Re: running sh script from perl script
in thread running sh script from perl script

Thanks...i found the porblem in my perl script....i was using
$ENV{$key} = chomp($value};
Whicc is wrong. i should have used
chomp($value); $ENV{$key} = $value;
thanks to tye....he/she saved the day..... Amit (amit_ra)