如何使用Expect输入Perl脚本的密码?

时间:2009-09-02 09:47:36

标签: perl expect

我希望在运行安装脚本时自动输入密码。我使用Perl中的反引号调用了安装脚本。现在我的问题是如何使用expect或其他方式输入密码?

my $op = `install.sh -f my_conf -p my_ip -s my_server`;

执行以上操作时,会打印一个密码行:

Enter password for the packagekey: 

在上面一行我想输入密码。

3 个答案:

答案 0 :(得分:12)

使用Expect.pm

该模块专为需要用户反馈的应用程序的程序控制而量身定制

#!/usr/bin/perl

use strict;
use warnings;

use Expect;

my $expect      = Expect->new;
my $command     = 'install.sh';
my @parameters  = qw(-f my_conf -p my_ip -s my_server);
my $timeout     = 200;
my $password    = "W31C0m3";

$expect->raw_pty(1);  
$expect->spawn($command, @parameters)
    or die "Cannot spawn $command: $!\n";

$expect->expect($timeout,
                [   qr/Enter password for the packagekey:/i, #/
                    sub {
                        my $self = shift;
                        $self->send("$password\n");
                        exp_continue;
                    }
                ]);

答案 1 :(得分:3)

如果程序从标准输入读取密码,您只需将其输入:

`echo password | myscript.sh (...)`

如果没有,Expect或PTYs。

答案 2 :(得分:1)

您可以将密码保存在文件中,并在运行安装脚本时,从文件中读取密码。