summaryrefslogtreecommitdiff
path: root/toks_per_line
diff options
context:
space:
mode:
Diffstat (limited to 'toks_per_line')
-rwxr-xr-xtoks_per_line12
1 files changed, 0 insertions, 12 deletions
diff --git a/toks_per_line b/toks_per_line
deleted file mode 100755
index 012caac..0000000
--- a/toks_per_line
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/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
-