Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Sending and receiving data to standard input and output of the linux based server.

by salva (Canon)
on Mar 01, 2013 at 09:52 UTC ( [id://1021207]=note: print w/replies, xml ) Need Help??


in reply to Sending and receiving data to standard input and output of the linux based server.

Nowadays, the standard way to run commands in a remote Linux or Unix server is to use SSH. Telnet is an insecure and obsolete protocol.
use Net::SSH::Any; my $ssh = Net::SSH::Any->new($host, user => $user, password => $passwo +rd); my $output = $ssh->capture({stdin_data => $input_data}, $cmd);
On Windows, in addition to Net::SSH::Any, you will have to install Net::SSH2, there are ppm versions of this package available from the net.
  • Comment on Re: Sending and receiving data to standard input and output of the linux based server.
  • Download Code

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1021207]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (3)
As of 2024-03-29 15:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found