I have a file in the directory usr/share/ruby.rb. I want to transfer that file to IP-based remote devices using SSH and SCP using Ruby calls. Can anyone help me?
|
| |||||
feedback
|
|
The Net::SSH library includes Net::SCP, so you should start looking there. From the Net::SCP docs:
require 'net/scp'
# upload a file to a remote server
Net::SCP.upload!("remote.host.com", "username",
"/local/path", "/remote/path",
:password => "password")
# download a file from a remote server
Net::SCP.download!("remote.host.com", "username",
"/remote/path", "/local/path",
:password => password)
# download a file to an in-memory buffer
data = Net::SCP::download!("remote.host.com", "username", "/remote/path")
| |||||||
feedback
|
|
example:
there's also an | |||
|
feedback
|