Hi All,
I have a perl script on AIX platform which calls a Java program as :-
`Java Program 1'
Now this Java program calls another perl Script.
This Second Perl script in turns call another Java program and captures its output as :-
my $output = `Java Program2'
This works fine in all platforms other than AIX unix.
The above command when executed on AIX returns the value in $? as 139 (I believe this means succesful as 139 << 8 is 0)
But If I check the second Java program never gets called.
The $output varaible value is eq ""
Any help how can I achieve this would be highly appreciated.