Help for this page

Select Code to Download


  1. or download this
    $exp->expect($timeout,
                  [ qr/username: /i, sub { my $self = shift;
    ...
                                           $self->send("$password\r");
                                           exp_continue; }],
                  $shell_prompt);
    
  2. or download this
    print "username: ";
    my $username = <STDIN>;
    ...
    my $password = <STDIN>;
    chomp $username;
    chomp $password;