Help for this page

Select Code to Download


  1. or download this
    my $exp = new Expect;
    $exp = Expect->spawn('sudo sh /usr/local/scripts/pre_backup.sh')
    ...
    if ($exp->expect(undef, 'Password')) {
            $exp->send("$password\cM");
    }
    
  2. or download this
    if ($exp->expect(undef, 'any key to continue')) {
            $exp->send("\cM");
    }