= private = protected
each(rs = nil)
Iterates a block for each line.
# File lib/shell/filter.rb, line 38 def each(rs = nil) rs = @shell.record_separator unless rs if @input @input.each(rs){|l| yield l} end end