summaryrefslogtreecommitdiff
path: root/sample/occur2.rb
blob: c450c30b0f0f2d60b325d3433f69f067deb918b5 (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
    rescue
      freq[word] = 1
    end
  end
end

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