summaryrefslogtreecommitdiff
path: root/toks-per-line
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2016-07-05 11:01:46 +0200
committerPatrick Simianer <p@simianer.de>2016-07-05 11:01:46 +0200
commit2b1d7f881c19c4d4b5afae194e02d3300c7675d0 (patch)
tree5a06ee7de98640a39244b57bb369697176b44ebf /toks-per-line
parent69949dda35c3ea21d8e926e5f0a596a0a0f61c6a (diff)
mv
Diffstat (limited to 'toks-per-line')
-rwxr-xr-xtoks-per-line12
1 files changed, 12 insertions, 0 deletions
diff --git a/toks-per-line b/toks-per-line
new file mode 100755
index 0000000..012caac
--- /dev/null
+++ b/toks-per-line
@@ -0,0 +1,12 @@
+#!/usr/bin/env ruby
+
+uniq = false
+uniq = true if ARGV[0]
+
+while line = STDIN.gets
+ a = line.strip.split
+ a.uniq! if uniq
+ a.sort!
+ puts a.join " "
+end
+