In Files

  • shell/builtin-command.rb

Shell::Glob

Public Class Methods

new(sh, pattern) click to toggle source
 
               # File shell/builtin-command.rb, line 57
def initialize(sh, pattern)
  super sh

  @pattern = pattern
  Thread.critical = true
  back = Dir.pwd
  begin
    Dir.chdir @shell.cwd
    @files = Dir[pattern]
  ensure
    Dir.chdir back
    Thread.critical = false
  end
end
            

Public Instance Methods

each(rs = nil) click to toggle source
 
               # File shell/builtin-command.rb, line 72
def each(rs = nil)
  rs =  @shell.record_separator unless rs
  for f  in @files
    yield f+rs
  end
end