ramki067 has asked for the wisdom of the Perl Monks concerning the following question:
I"m getting only "root@android:/mnt/sdcard # input keyevent 66" only and not the messages displayed after i enter this command. Please help.use Net::Telnet; $ip='xx.xxx.xx.xx'; $ip_port='10009'; $port = Net::Telnet->new( Host=>$ip,Port=>$ip_port,Dump_log=> "dump.l +og"); @lnes= $port->cmd("input keyevent 66"); sleep(5); $lc=0; print "Console Log:"; while($lc<5) { print $lnes[$lc]; print FILE $lnes[$lc]; ++$lc; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Issue with capture the output of android command in perl
by shmem (Chancellor) on Nov 27, 2013 at 09:27 UTC |