Skip to content

Instantly share code, notes, and snippets.

@nicdoye
Last active December 13, 2015 18:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nicdoye/4954496 to your computer and use it in GitHub Desktop.
Save nicdoye/4954496 to your computer and use it in GitHub Desktop.
A copy of my count-commas.groovy gist in ruby. Count the number of commas in each line, as of check-in 2 supports _real_ quoted CSV, too.
#!/usr/bin/env ruby
require 'csv'
CSV.foreach(ARGV[0],'r') {|row| puts row.size}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment