Help for this page

Select Code to Download


  1. or download this
    use Net::SSH::Perl; 
    my $ssh;
    $ssh = new Net::SSH::Perl("192.168.128.4"); $ssh->login("root"); 
    ($x,$y,$z) = $ssh->cmd('pwd');
    
  2. or download this
    Use warning;
    Use strict;
    
  3. or download this
    $ssh = new Net::SSH::Perl("192.168.128.4");
    
  4. or download this
    $ssh = Net::SSH::Perl-> new("192.168.128.4");
    
  5. or download this
    $ssh->login("root");