show/hide this revision's text 2 added 2 characters in body

I'm trying to change the directory of the shell I start the ruby script form via the ruby script itself...

My point is to build a little program to manage favorites directories and easily change among them.

Here's what I did

!/usr/bin/ruby

#!/usr/bin/ruby
Dir.chdir("/Users/luca/mydir")

and than tried executing it in many ways...

my_script (this doesn't change the directory)
. my_script (this is interpreted as bash)
. $(ruby my_script) (this is interpreted as bash too!)

any idea?

show/hide this revision's text 1

run command in parent shell from ruby

I'm trying to change the directory of the shell I start the ruby script form via the ruby script itself...

My point is to build a little program to manage favorites directories and easily change among them.

Here's what I did

!/usr/bin/ruby

Dir.chdir("/Users/luca/mydir")

and than tried executing it in many ways...

my_script (this doesn't change the directory) . my_script (this is interpreted as bash) . $(ruby my_script) (this is interpreted as bash too!)


any idea?