blob: a1a01283bdf4ec5b3c0d6bcb01f205739864f121 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#!/usr/bin/env ruby
require 'trollop'
STDIN.set_encoding 'utf-8'
STDOUT.set_encoding 'utf-8'
cfg = Trollop::options do
banner "splitpipes -f <n> < <input>"
opt :field, "field", :type => :int, :required => true
opt :to, "to", :type => :int, :default => nil
end
a = []
range = false
if cfg[:to]
range = true
end
if range
if cfg[:field] >= cfg[:to]
STDERR.write "field >= to, exiting\n"
exit
end
end
if cfg[:field]<=0 || (range && cfg[:to]<=0)
STDERR.write "field or to <= 0, exiting"
exit
end
while line = STDIN.gets
j = 1
line.strip.split(' ||| ').each { |i|
if range && (cfg[:field]..cfg[:to]).include?(j)
a << i.strip
elsif j == cfg[:field]
puts i.strip
break
end
j += 1
}
if range
puts "#{a.join " ||| "}\n"
end
a.clear
end
|