8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# File 'lib/rbcat/cli.rb', line 8
def self.start(args)
options = parse_options(args)
colorizer_options = create_colorizer_options(options)
while input = STDIN.gets
input.each_line do |line|
begin
puts Rbcat.colorize(line, colorizer_options)
rescue Errno::EPIPE
exit(74)
end
end
end
end
|