Project

General

Profile

Bug #12691 ยป test.rb

Simple CSV test script - uberbrady (Brady Wetherington), 08/19/2016 10:00 PM

 
#!/usr/bin/env ruby

require 'CSV'

p "Working with file: #{ARGV[0]}"

CSV.foreach(ARGV[0]) do |row|
p "A row is: #{row}"
end
    (1-1/1)