Communicating w/ command-line program (OR ruby expect)

Hello,

I’m trying to communicate w/ a command-line process w/ ruby. I
thought IO.popen would be the right tool for the job, but I need to be
able to read and write to the process, and I can’t get it to work
(i’ve googled for examples, but everything I have seen is only doing
one-way communication). Anyway, it looks like what I need is
something like “Expect” for ruby. Does anyone know if such a tool
exists? (Or any other way in which I could read/write from a
command-line program).

Thanks!
Cam

On Sep 24, 4:57 pm, “Cameron M.” [email protected]
wrote:

Thanks!
Cam

If you’re just calling a command line tool like grep or something
(reads standard input and then returns result to standard out),
IO.popen is what you need:

cmd_output = IO.popen “cmd -args some stuff”, ‘r+’ do |pipe|
pipe.write the_input
pipe.close_write
pipe.read.chomp
end

if $? == 0

success, do something

else

cmd exited with an error, deal with it

end

If you need to interact with something (a la irb, ftp, telnet, etc.)
you’ll need to find something else, I think.

Jeremy

Hi,

On 9/24/07, [email protected] [email protected] wrote:

If you need to interact with something (a la irb, ftp, telnet, etc.)
you’ll need to find something else, I think.

This is what I’m looking for (something to interact w/ a program that
has an ftp-like interface).

Thanks,
Cam

On Sep 24, 2007, at 5:18 PM, Cameron M. wrote:

Hi,

On 9/24/07, [email protected] [email protected] wrote:

If you need to interact with something (a la irb, ftp, telnet, etc.)
you’ll need to find something else, I think.

This is what I’m looking for (something to interact w/ a program that
has an ftp-like interface).

For FTP use Net::FTP, of course. Otherwise, Ruby does ship with a
simple expect library:

$ cat /usr/local/lib/ruby/1.8/expect.rb
$expect_verbose = false

class IO
def expect(pat,timeout=9999999)
buf = ‘’
case pat
when String
e_pat = Regexp.new(Regexp.quote(pat))
when Regexp
e_pat = pat
end
while true
if IO.select([self],nil,nil,timeout).nil? then
result = nil
break
end
c = getc.chr
buf << c
if $expect_verbose
STDOUT.print c
STDOUT.flush
end
if mat=e_pat.match(buf) then
result = [buf,*mat.to_a[1…-1]]
break
end
end
if block_given? then
yield result
else
return result
end
nil
end
end

END

Hope that helps.

James Edward G. II

hey there,
I don’t know if you already got it (hope so :slight_smile: ) but here you’ll find
helpful tips:
http://codeidol.com/other/rubyckbk/System-Administration/Scripting-an-External-Program/

hth
joahking