summaryrefslogtreecommitdiff
path: root/keycount
diff options
context:
space:
mode:
Diffstat (limited to 'keycount')
-rwxr-xr-xkeycount14
1 files changed, 0 insertions, 14 deletions
diff --git a/keycount b/keycount
deleted file mode 100755
index deaa522..0000000
--- a/keycount
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/env ruby
-
-STDIN.set_encoding 'utf-8'
-STDOUT.set_encoding 'utf-8'
-
-h = {}
-h.default = 0
-while line = STDIN.gets
- line.strip!
- h[line] += 1
-end
-
-h.each_pair { |k,v| puts "#{k} #{v}" }
-