greatshots has asked for the wisdom of the Perl Monks concerning the following question:
I was trying to access a unix machine which is recently updated with SSH connection. my perl code is
and I am getting the error as followsuse Net::SSH qw(sshopen2); my $user = "metrica"; my $host = "1em0n5"; my $cmd = "ls"; sshopen2("$user\@155.226.201.96", *READER, *WRITER, "$cmd") || die "ss +h: $!";
Could any one help me to solve this. what is the cause of this issue.C:\Documents and Settings\guest\Desktop>'ssh' is not recognized as an +internal or external command, operable program or batch file.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Remote machine access issue using Net::SSH
by moritz (Cardinal) on Nov 13, 2007 at 07:24 UTC | |
|
Re: Remote machine access issue using Net::SSH
by cmv (Chaplain) on Nov 13, 2007 at 14:01 UTC | |
|
Re: Remote machine access issue using Net::SSH
by RaduH (Scribe) on Nov 13, 2007 at 15:43 UTC |