Hi, again. I was fiddling with the various Net::SSH2 features, and found 2 good example sources. The first is the Net-SSH2.t test file, and the second is the mailling list (with browsable archives) at
SSH2 users Here is an example of how to use the shell(), from the archives.
#!/usr/bin/perl
use warnings;
use strict;
use Net::SSH2;
my $ssh2 = Net::SSH2->new();
print "connect fail\n" unless ($ssh2->connect('testbox'));
print "password fail\n" unless
($ssh2->auth_keyboard('z','*******'));
my $chan=$ssh2->channel();
$chan->shell();
print $chan "uname -a\n";
print "LINE : $_" while <$chan>;
print $chan "who\n";
print "LINE : $_" while <$chan>;
$chan->close;
<--end--
and the output:
--start-->
LINE : Linux testbox 2.6.5-7.111.19-smp #1 SMP Fri Dec 10 15:10:58 UT
+C
2004 i686 i686 i386 GNU/Linux
LINE : root pts/0 Feb 14 14:33 (robspc)
<--end--
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.