diff options
author | Patrick Simianer <p@simianer.de> | 2014-10-09 20:47:23 +0100 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2014-10-09 20:47:23 +0100 |
commit | e0b634754d1bef33dc8e72509c6990cccc32745a (patch) | |
tree | 95d77abef518a333830881dbbd661f14f94868c3 /keycount | |
parent | 254c27ed4af938f0b9c4a21cb99b75f8cc1cd1b2 (diff) |
alles neu macht der mai
Diffstat (limited to 'keycount')
-rwxr-xr-x | keycount | 14 |
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}" } - |