From db6a6ecfa350cae29739c59df1210d8f76a479c9 Mon Sep 17 00:00:00 2001 From: Patrick Simianer Date: Thu, 5 Dec 2013 07:56:38 +0100 Subject: init --- splitpipes | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100755 splitpipes (limited to 'splitpipes') diff --git a/splitpipes b/splitpipes new file mode 100755 index 0000000..b0c3c9c --- /dev/null +++ b/splitpipes @@ -0,0 +1,29 @@ +#!/usr/bin/env ruby + +require 'trollop' + + +STDIN.set_encoding 'utf-8' +STDOUT.set_encoding 'utf-8' + +def usage + STDERR.write "splitpipes -f < \n" + exit 1 +end +usage if ARGV.size!=2 + +opts = Trollop::options do + opt :field, "field", :type => :int +end + +while line = STDIN.gets + j = 1 + line.strip.split(' ||| ').each { |i| + if j == opts[:field] + puts i.strip + break + end + j += 1 + } +end + -- cgit v1.2.3