summaryrefslogtreecommitdiff
path: root/sample/freq.rb
blob: 4e0206c114fa18d1da9b5a933a6a71517a88e1d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# word occurrence listing
# usege: ruby freq.rb file..
freq = Hash.new(0)
while gets
  while sub!(/\w+/, '')
    word = $&
    freq[word] += 1
  end
end

for word in freq.keys.sort!
  print word, " -- ", freq[word], "\n"
end