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?

link|improve this question
1  
Re-asking the same question isn't acceptable behavior here. If you want to draw attention to your question, you will be allowed to place a bounty on it after two days. You can also edit your question to add additional information, which may make your question easier to understand and answer. – Will Apr 14 '11 at 18:09
feedback

2 Answers

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")
link|improve this answer
Thanks a lot..I will check whether it works.. – user705217 Apr 13 '11 at 12:38
You'll need to modify the samples to fit your situation. The sample code isn't handing you fish to eat, it's showing you the appropriate things to use to catch your own fish. – the Tin Man Apr 14 '11 at 18:08
Hi Tin, when I run the script it shows NoMethod error..what does that mean??.....this is my script..require net/scp – user705217 Apr 17 '11 at 7:32
feedback

example:

require 'net/scp'

    host = '10.10.10.10'
    login = 'foo'
    password = 'bar'

    Net::SCP.start(host, login, :password => password) do |scp|
      puts 'SCP Started!'
      scp.download('/usr/share/ruby.rb', '.')
    end

there's also an scp.upload

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.