- 论坛徽章:
- 0
|
ok, try this code
- use strict;
- use warnings;
- use Expect;
- my $exp = new Expect;
- $Expect::Log_Stdout = 0;
- my $host = $ARGV[0];
- my $username = $ARGV[1];
- my $password = $ARGV[2];
- my $command = "telnet $host";
- $exp = Expect->spawn($command) or die "Cannot spawn $command: $!\n";
- $exp->expect( 30, "login:" );
- $exp->raw_pty(1);
- $exp->send("$username\n");
- $exp->expect( 30, "assword:" );
- $exp->send("$password\n");
- $exp->expect( 1, '$' );
- $exp->print("cat /proc/stat\n");
- $exp->expect( 1, undef );
- #此处使用cat取文件内容,在命令行中有输出,但是我该如何取这里数据来处理呢?
- my $read = $exp->before();
- print $read;
- $exp->send("exit\n");
- $exp->soft_close();
复制代码
$read里面的内容需要你自己提取一下
[ 本帖最后由 churchmice 于 2009-5-4 13:23 编辑 ] |
|