Skip to content

Instantly share code, notes, and snippets.

@donat-b
Last active August 29, 2015 14:14
Show Gist options
  • Save donat-b/888823c12cc3571707ce to your computer and use it in GitHub Desktop.
Save donat-b/888823c12cc3571707ce to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
require 'csv'
@prefix = '8'
CSV.foreach('DEF.csv', { :col_sep => ';' }) do |row|
_code, _start, _end, _cound = row
for i in _start.._end
puts @prefix + _code + i
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment