An SSH Client : ssh « Network « Ruby






An SSH Client


require 'rubygems'
require 'net/ssh'

Net::SSH.start('example.com', :username=>'userName',
               :password=>'mypass') do |session|

end

 








Related examples in the same category

1.List server files with SSH
2.Change directory with SSH
3.Copying a File to Another Machine