run the output of a script as a standalone bash command - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T11:45:31Zhttp://stackoverflow.com/feeds/question/720122http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/720122/run-the-output-of-a-script-as-a-standalone-bash-command4run the output of a script as a standalone bash commanddreftymac2009-04-06T02:44:25Z2009-05-05T15:05:14Z
<p>suppose you have a perl script "foobar.pl" that prints the following to stdout</p>
<pre><code>date -R
</code></pre>
<p>and you want to run whatever that perl script outputs as a standalone bash command (don't worry about security problems as this is running in a trusted environment).</p>
<p>How do you get bash to recognize this as a standalone command?</p>
<p>I've tried using xargs, but that seems to want to pass <em>arguments only</em> to a pre-defined command.</p>
<p>I want the perl script to be able to output any arbitrary command.</p>
<pre><code>$command = 'date -R'
system($command); ## in the perl script
</code></pre>
<p>the above does not work because I want it to run in an existing cygwin environment ...</p>
<pre><code>foobar.pl | xargs bash -i {}
</code></pre>
<p>the above does not work because bash seems to be running a new process and thus the initialization and settings from bash_profile don't get instantiated.</p>
http://stackoverflow.com/questions/720122/run-the-output-of-a-script-as-a-standalone-bash-command/720138#7201383Answer by j_random_hacker for run the output of a script as a standalone bash commandj_random_hacker2009-04-06T02:53:43Z2009-04-06T02:53:43Z<p>Try:</p>
<pre><code>foobar.pl | bash
</code></pre>
http://stackoverflow.com/questions/720122/run-the-output-of-a-script-as-a-standalone-bash-command/720144#7201440Answer by Ben for run the output of a script as a standalone bash commandBen2009-04-06T03:00:01Z2009-04-06T03:00:01Z<p>Hi, I don't think this is exactly what you're looking for, but its what I've got :-)</p>
<pre><code>perl foo.pl > /tmp/$$.script; bash /tmp/$$.script; rm /tmp/$$.script
</code></pre>
<p>Good luck!</p>
http://stackoverflow.com/questions/720122/run-the-output-of-a-script-as-a-standalone-bash-command/720151#7201515Answer by Brian Campbell for run the output of a script as a standalone bash commandBrian Campbell2009-04-06T03:04:31Z2009-04-06T03:04:31Z<pre><code>`foobar.pl`
</code></pre>
http://stackoverflow.com/questions/720122/run-the-output-of-a-script-as-a-standalone-bash-command/720153#7201533Answer by paxdiablo for run the output of a script as a standalone bash commandpaxdiablo2009-04-06T03:05:47Z2009-04-06T03:05:47Z<p>Given the perl file:</p>
<pre><code>print "date";
</code></pre>
<p>the following bash command will do it.</p>
<pre><code>> $(perl qq.pl)
Mon Apr 6 11:02:07 WAST 2009
</code></pre>
<p>But that is run in a separate shell. If you really want to invoke it in the context of the <em>current</em> shell, do this:</p>
<pre><code>$ perl qq.pl >/tmp/qq.$$ ; . /tmp/qq.$$ ; rm -f /tmp/qq.$$
Mon Apr 6 11:04:59 WAST 2009
</code></pre>
http://stackoverflow.com/questions/720122/run-the-output-of-a-script-as-a-standalone-bash-command/720442#7204421Answer by lhunath for run the output of a script as a standalone bash commandlhunath2009-04-06T07:11:10Z2009-04-06T07:16:45Z<p><strong>Bad:</strong></p>
<pre><code>`perl foo.pl`
$(perl foo.pl)
</code></pre>
<p>Why is this bad? Because of so many reasons; most notably:</p>
<ul>
<li>Wordsplitting: What you're doing here is taking the output of the perl script, splitting it into chunks wherever there are spaces, tabs or newlines, and taking those chunks as arguments to the first chunk which is the command to run. In really extremely simplistic cases like <code>$(echo 'date +%s')</code> it might work; but that's just a really bad representation of what you're REALLY doing here.</li>
<li>You cannot do quoting or use any other <code>bash</code> shell features like parameter expansion, bash keywords, etc.</li>
</ul>
<p><strong>Good, but inconvenient:</strong></p>
<pre><code>perl foo.pl > mytmpfile; bash mytmpfile
</code></pre>
<p>Creating a temporary file to put your perl script's output into and then running that with bash works, but it's inconvenient as you need to create (and clean up!) your temporary file and have it in a portably writable (and secure!) location.</p>
<p>Also remember not to use <code>.</code> or <code>source</code> to execute the temporary file unless you really intend to run it all in the active shell. Moreover, when you use <code>.</code> or <code>source</code>, you won't be able to reliably clean up your temporary file afterward.</p>
<p><strong>Probably the best solution:</strong></p>
<pre><code>perl foo.pl | bash
</code></pre>
<p>This is pretty safe all-round ("safe" in the context of, least bug-prone) assuming your perl script outputs correct bash syntax, of course.</p>
<p><strong>Alternatives that do pretty much the same thing:</strong></p>
<pre><code>bash < <(perl foo.pl)
bash <(perl foo.pl)
</code></pre>
http://stackoverflow.com/questions/720122/run-the-output-of-a-script-as-a-standalone-bash-command/825305#8253050Answer by Juan for run the output of a script as a standalone bash commandJuan2009-05-05T15:05:14Z2009-05-05T15:05:14Z<p>Try with open($fh,"-|",$arg1,$arg2)</p>