From: John Fink Date: 2006-07-19T00:02:18+09:00 Subject: Re: program works in irb, but not in script... ------=_Part_35803_26376730.1153234935966 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Holy moley, that works. Retrospectively, what a completely dumb thing I did. Of course zoom would choke on newlines. Buh. Guy, thanks a ton; I appreciate it. jf On 7/18/06, ts wrote: > > >>>>> "J" == John Fink writes: > > Try it with > > J> puts "Server:" > J> server = gets > > server = gets.chomp > > J> puts "dbname:" > J> dbname = gets > > dbname = gets.chomp > > J> puts "Syntax:" > J> syntax = gets > > syntax = gets.chomp > > J> puts "isbn:" > J> isbn = gets > > isbn = gets.chomp > > > Guy Decoux > > ------=_Part_35803_26376730.1153234935966--