method
each
v2_1_10 -
Show latest stable
- Class:
Shell::Cat
each(rs = nil)public
No documentation available.
# File lib/shell/builtin-command.rb, line 54
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