for file in Dir[‘910???’] do
File.open(file, ‘r’) do |f|
f.each_line{|l|
puts l
process l
}
end
end
doesn’t appear to be processed well when entered into irb
This is a bug?
Thanks.
-r
for file in Dir[‘910???’] do
File.open(file, ‘r’) do |f|
f.each_line{|l|
puts l
process l
}
end
end
doesn’t appear to be processed well when entered into irb
This is a bug?
Thanks.
-r
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.
Sponsor our Newsletter | Privacy Policy | Terms of Service | Remote Ruby Jobs