Created
June 30, 2014 21:12
-
-
Save natematias/7b00052299c869e7cc6b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'csv' | |
emails = CSV.read(ARGV[0]) | |
emails.shift | |
full_emails = [] | |
emails.each do |email| | |
if(!email[0].nil? and email[0].strip.size>0) | |
full_emails << email[0].strip | |
end | |
end | |
puts full_emails.join(",") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment