Guest User

Untitled

a guest
Sep 21st, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. #! /usr/bin/env ruby
  2.  
  3. puts(open("vcards-XING.vcf").lines.map do |line|
  4. $1.chomp if line =~ /^EMAIL.*:(.*)$/
  5. end.compact.uniq.join(','))
Add Comment
Please, Sign In to add comment