1 2 3 4 5 6 7 8 9 10
#!/usr/bin/env ruby require 'csv' CSV.open(ARGV.shift, 'wb') do |csv| 20_000_000.times do |i| csv << [i, 'blum', 'baz'] end end