Hi
Tried using the Net::SSH::Any module, but it's not doing what I expected. I am going wrong somewhere.
I am trying to ssh into the VMWare Guest OS (CentOS 6.2). Before trying the script, I pinged and ensured that its working. I am also able to putty into the VMWare Guest OS, but not able to use the script for some reason.
Given below is the script
#!/usr/bin/perl
use Modern::Perl;
use Net::SSH::Any;
my $host = '192.168.247.101';
my $user = "perl514";
my $passwd = "redhat";
my $ssh = Net::SSH::Any->new ($host, user => $user, password => $passw
+d);
my @output = $ssh->capture2("ls -l");
say "@output";
And here is the output. The cursor blinks for a while so it appears that it could be running the command, but returns the following error
Use of uninitialized value $output[0] in join or string at anyping.pl
+line 10.
Basically I want to capture the output of the ls -l command in the @output.
Perlpetually Indebted To PerlMonks
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|