diff options
author | Patrick Simianer <p@simianer.de> | 2013-12-05 07:56:38 +0100 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2013-12-05 07:56:38 +0100 |
commit | db6a6ecfa350cae29739c59df1210d8f76a479c9 (patch) | |
tree | f137a001f57f170455c28ce97b5abb2726006cf6 /keycount |
init
Diffstat (limited to 'keycount')
-rwxr-xr-x | keycount | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/keycount b/keycount new file mode 100755 index 0000000..15b4095 --- /dev/null +++ b/keycount @@ -0,0 +1,11 @@ +#!/usr/bin/env ruby + +h = {} +h.default = 0 +while line = STDIN.gets + line.strip! + h[line] += 1 +end + +h.each_pair {|k,v| puts "#{k} #{v}"} + |