Member Sign In
Not a member?

A Wired.com user account lets you create, edit and comment on Webmonkey articles. You will also be able to contribute to the Wired How-To Wiki and comment on news stories at Wired.com.


It's fast and free.

Webmonkey is a property of Wired Digital.
processing...
Join Webmonkey

Please send me occasional e-mail updates about new features and special offers from Wired/Webmonkey.
Yes No

Please send occasional e-mail offers from Wired/Webmonkey affiliated web sites and publications, and carefully selected companies.
Yes No

I understand and agree that registration on or use of this site constitutes agreement to Webmonkey's User Agreement and Privacy Policy.
Webmonkey is a property of Wired Digital.
processing...

Retrieve Sign In

Please enter your e-mail address or username below. Your username and password will be sent to the e-mail address you provided us.

or
Webmonkey is a property of Wired Digital.
processing...

Welcome to Webmonkey

A private profile page has been created for you.
As a member of Webmonkey, you can now:
  • edit articles
  • add to the code library
  • design and write a tutorial
  • comment on any Webmonkey article
Close
Webmonkey is a property of Wired Digital.

Sign In Information Sent

An e-mail has been sent to the e-mail address registered in this account.
If you cannot find it in your in-box, please check your bulk or junk folders.
Sign In
Webmonkey is a property of Wired Digital.

FTP via SSH in Ruby

/skill level/
/viewed/
0 Times

Contents

Introduction

Basically you want to FTP some files from your machine to another server using SSH and don't mind using Ruby Language to achieve that.

What you'll need

Skills needed: Ruby Software required: Ruby, Ruby Gems


Introduction

What you'll need

Code and Explanation

require 'rubygems'

require 'net/ssh' require 'net/sftp' require 'ftools'

local_directory = 'local_files' remote_directory = '/root/remote_directory'

host = 'upload.server.com' port = '12345' username = 'test1234' password = 'secretpassword'

files_to_upload = ['1.xml','2.xml','3.xml']

session = Net::SSH.start(host, port, username, password)

session.sftp.connect do |sftp|

 files_to_upload.each do |file_name|
   sftp.put_file("#{local_directory}/#{file_name}", "#{remote_directory}/#{file_name}")
   puts "Finished copying #{file_name}"
 endInsert non-formatted text here

end

session.close

Suggested readings

Suggested readings

http://net-ssh.rubyforge.org/ http://www.rubygems.org/read/chapter/3

  • This page was last modified 05:12, 27 May 2008.
Edit this article
Reddit Digg
 
Subscribe now

Special Offer For Webmonkey Users

WIRED magazine:
The first word on how technology is changing our world.

Subscribe for just $10 a year