summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2015-11-12 13:48:16 +0100
committerPatrick Simianer <p@simianer.de>2015-11-12 13:48:16 +0100
commitda8d0a3e1764e62f1ec321e5d64ab4e746d704a8 (patch)
treeeccbde6f48f49c41a70818bb815299d0736c8254
parent40cc40501c9ac3803cb03c717ceeca8cf3d499d7 (diff)
map lines to number of token they contain
-rwxr-xr-xltok9
1 files changed, 9 insertions, 0 deletions
diff --git a/ltok b/ltok
new file mode 100755
index 0000000..c90823e
--- /dev/null
+++ b/ltok
@@ -0,0 +1,9 @@
+#!/usr/bin/ruby
+
+STDIN.set_encoding 'utf-8'
+STDOUT.set_encoding 'utf-8'
+
+while line = STDIN.gets
+ puts line.strip.split(/\s/).size
+end
+