Hi,
First time user hopefully long time Monk.
I have a question regarding Net::SSH::Perl which I hope can be easily answered.
Using Net::SSH::Perl I can get STDOUT to my screen in all cases except for commands run in real time.
For example tail -f or snoop.
I have no problems with such commands with defined answers such as who,cat,date,uptime etc.
This issue has a work around in SSH::Telnet using the code below.
Using Net::Telnet I can get a real time response to a tail -f or a snoop command using the following code
$telnet = new Net::Telnet (input_log => \*STDOUT , Timeout =>1000);
$telnet ->open("$host");
$telnet->login("$user","$password");
$telnet->cmd("snoop -d bge0");
My question is, is there a workaround in Net::SSH::Perl
My Net::SSH code is
my $ssh=Net::SSH::Perl->new("$host");
$ssh->login("$user","$password");
($stdout,$stderr)=$ssh->cmd("snoop -d bge0");
print $stdout;
but for the life of me I can't get this to work on Net::SSH::Perl
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.