perl
print @INC;
works in the local system , but i need to get the output in a remote system
i wrote below code to get the same
---------------------
perl
$x = `ssh -l $userid $sysname 'perl;print @INC'`;
print $x;
---------------------
the above code is never ending , please help me in this regard
thanks
print @INC;
works in the local system , but i need to get the output in a remote system
i wrote below code to get the same
---------------------
perl
$x = `ssh -l $userid $sysname 'perl;print @INC'`;
print $x;
---------------------
the above code is never ending , please help me in this regard
thanks
Comment