Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Net::SFTP mess

by steves (Curate)
on Nov 09, 2004 at 02:42 UTC ( [id://406269]=note: print w/replies, xml ) Need Help??


in reply to Net::SFTP mess

And for yet another way: If you have Net::SSH::Perl installed, you can also use a remote command like cat (on a *nix system) to move files back and forth, since Net::SSH::Perl's cmd method lets you both capture standard output from the remote command and supply a buffer to use as standard input fed to the remote command.

# $data contains data from a local file to put in the # remote file named by $to ($output, $error, $status) = $ssh->cmd("cat > $to", $data); # On return, $output contains data from the remote file # identified by $from (check status, etc. of course!) ($output, $error, $status) = $ssh->cmd("cat $from");

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (6)
As of 2024-03-28 08:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found