If I just use once sysread to try, it is still empty. Here is the code, what is wrong in the code?
my $cmd = '/opt/rssh/bin/ssh';
my $machine = "remote_machine";
open(my $fh, "-|", "$cmd $machine \"hostname;sleep 5;uptime\" 2>&1") o
+r die "cannot open fh";
my $flags = fcntl($fh, F_GETFL, 0) or die "\ncan't get flags for the p
+ipe: $!\n";
fcntl($fh, F_SETFL, $flags | O_NONBLOCK) or die "\ncan't set flags: $!
+\n";
my $out = $fh;
my $bytes_read = -1;
my $blocksize = 1024;
my $result = "";
my $buf;
$bytes_read = sysread($out, $buf, $blocksize);
print "\nl buf content is:\n $buf \n";
close $out;
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, 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
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.
|
|