Help for this page

Select Code to Download


  1. or download this
    sub ops_do_ssh_shell {
       my ($cmd) = @_;
    #etc ...
    }
    
  2. or download this
    sub ops_do_ssh_shell {
       my ($cmd) = @_;
    ...
    
       return $cmd;
    }
    
  3. or download this
    my $cmd_status = ops_do_ssh_shell($cmd);
    
  4. or download this
    my @commands = (
       { name => 'command_name1',
    ...
          }
       }
    }