Method: Shell::Glob#each

Defined in:
lib/shell/builtin-command.rb

#each(rs = nil) ⇒ Object


72
73
74
75
76
77
78
79
80
81
82
83
# File 'lib/shell/builtin-command.rb', line 72

def each(rs = nil)
  if @pattern[0] == ?/
    @files = Dir[@pattern]
  else
    prefix = @shell.pwd+"/"
    @files = Dir[prefix+@pattern].collect{|p| p.sub(prefix, "")}
  end
  rs =  @shell.record_separator unless rs
  for f in @files
    yield f+rs
  end
end