如何使用期望的Perl脚本输入密码?(How can I use Expect to enter a

2019-08-03 10:32发布

我想运行一个安装脚本时,自动输入密码。 我已经使用调用在Perl反引号中的安装脚本。 现在我的问题是我怎么输入使用密码expect还是其他什么东西?

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

当执行以上所述,一个密码行被打印:

Enter password for the packagekey: 

在上面的线我要输入密码。

Answer 1:

使用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;
                    }
                ]);


Answer 2:

如果程序从标准输入读取密码,你可以管它:

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

如果没有,想到还是伪终端



Answer 3:

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



文章来源: How can I use Expect to enter a password for a Perl script?
标签: perl expect