Rick Ashton schrieb: > Thanks guys > > But it still doesn't load the file into the current scope as I mentioned > before. Is there some way to do this? > > ie: > > $ echo a=5 > blah.rb > $ irb -r blah.rb > irb(main):001:0> a > NameError: undefined local variable or method `a' for main:Object > from (irb):1 > > > Thanks! > Hi Rick, try eval(File.read('blah.rb')) ~dingsi