mozcdict-ext/.dev.utils/uniqline.rb

9 lines
91 B
Ruby

#!/bin/ruby
hash = {}
ARGF.each do |line|
hash[line.chomp] ||= true
end
puts hash.keys