From: gabriele renzi Date: 2003-01-06T05:18:45+09:00 Subject: Re: telnet session in ruby On Sun, 05 Jan 2003 19:39:10 GMT, "Panther" wrote: >How I can to do a telnet session in ruby. Thank you. there is a module for this: net::telnet (from the pickaxe:) require 'net/telnet' tn = Net::Telnet.new({}) tn.login "guest", "secret" tn.cmd "somecommand"