summaryrefslogtreecommitdiff
path: root/sample/occur2.rb
blob: 8cd5acbe5e5cacaec4c6ed7fbdbc7290986e05c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# word occurrence listing
# usege: ruby occur2.rb file..
freq = {}
while gets()
  for word in $_.split(/\W+/)
    begin
      freq[word] = freq[word] + 1
    resque
      freq[word] = 1
    end
  end
end

for word in freq.keys.sort
  printf("%s -- %d\n", word, freq[word])
end