run command in parent shell from ruby - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T10:25:47Zhttp://stackoverflow.com/feeds/question/1012303http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1012303/run-command-in-parent-shell-from-ruby0run command in parent shell from rubyluca2009-06-18T12:11:41Z2009-06-18T12:33:44Z
<p>I'm trying to change the directory of the shell I start the ruby script form via the ruby script itself...</p>
<p>My point is to build a little program to manage favorites directories and easily change among them.</p>
<p>Here's what I did</p>
<pre><code>#!/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!)
</code></pre>
<p>any idea?</p>
http://stackoverflow.com/questions/1012303/run-command-in-parent-shell-from-ruby/1012311#10123110Answer by daddz for run command in parent shell from rubydaddz2009-06-18T12:14:31Z2009-06-18T12:14:31Z<pre><code>#!/usr/bin/env ruby
`../your_script`
</code></pre>
<p>Like this?</p>
<p>Or start your script in the directory you want it to do something.</p>
<p>Maybe I don't get your question. Provide some more details.</p>
http://stackoverflow.com/questions/1012303/run-command-in-parent-shell-from-ruby/1012349#10123492Answer by Chas. Owens for run command in parent shell from rubyChas. Owens2009-06-18T12:23:03Z2009-06-18T12:33:44Z<p>Cannot be done. Child processes cannot modify their parents environment (including the current working directory of the parent). The <code>.</code> (also known as <code>source</code>) trick only works with shell scripts because you are telling the shell to run that code in the current process (rather than spawning a subprocess to run it). Just for fun try putting <code>exit</code> in a file you run this way (spoiler: you will get logged out).</p>
<p>If you wish to have the illusion of this working you need to create shell functions that call your Ruby script and have the shell function do the actual <code>cd</code>. Since the functions run in the current process, they can change the directory. For instance, given this ruby script (named temp.rb):</p>
<pre><code>#!/usr/bin/ruby
print "/tmp";
</code></pre>
<p>You could write this BASH function (in, say, you <code>~/.profile</code>):</p>
<pre><code>function gotmp {
cd $(~/bin/temp.rb)
}
</code></pre>
<p>And then you could say <code>gotmp</code> at the commandline and have the directory be changed.</p>