I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2011-07-09 04:55:23.7216-07 by irfanjs
command output is not getting printed on the console of server
hi, i am using Net::Telnet module to run command on the remote server following is the code
print $t->cmd("ls /tmp"); my @lines = $t->cmd( 'ls /tmp' ); print "@lines\n";
but none of the above code , prints the output of command on the console of the server from where the script is being executed (i mean on the local server). i use dump_log as well as input_log to debug and log-file contains, successful connection to remote host and the output of command. however, on the local server console , the output is not getting printed. what cud be the problem. plz suggest. Thanks.
Direct Responses: Write a response