From: nobu.nokada@... Date: 2002-09-19T13:02:25+09:00 Subject: Re: self-loading scripts (at Ruby's startup time) Hi, At Thu, 19 Sep 2002 07:17:56 +0900, Overnight wrote: > Do they exist? I'm afraid they don't, or at least I couldnt' find any > hint in "Programming Ruby" and in ruby-talk. Hope I'm wrong... None. You can set -r option in RUBYOPT environment variable, $ ruby -e0 $ cat foo.rb puts "`#$0' starts" $ RUBYOPT=-rfoo ruby -e0 `-e' starts in /tmp -- Nobu Nakada