method
each
each(rs = nil)
public
Hide source
# File lib/shell/builtin-command.rb, line 55 def each(rs = nil) if @cat_files.empty? super else for src in @cat_files @shell.foreach(src, rs){|l| yield l} end end end