How to run a .sh-script in an Unix console/Mac terminal? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T07:27:14Zhttp://stackoverflow.com/feeds/question/733824http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/733824/how-to-run-a-sh-script-in-an-unix-console-mac-terminal0How to run a .sh-script in an Unix console/Mac terminal?P-A2009-04-09T11:36:26Z2009-04-09T12:42:16Z
<p>I know it, forgets it and relearn it again. Time to write it down.</p>
http://stackoverflow.com/questions/733824/how-to-run-a-sh-script-in-an-unix-console-mac-terminal/733833#7338331Answer by P-A for How to run a .sh-script in an Unix console/Mac terminal?P-A2009-04-09T11:39:32Z2009-04-09T11:52:29Z<p>To start the shell-script 'file.sh':</p>
<pre><code>sh file.sh
bash file.sh
</code></pre>
<p>Another option is set executable permission using chmod command:</p>
<pre><code>chmod +x file.sh
</code></pre>
<p>Now run .sh file as follows:</p>
<pre><code>./file.sh
</code></pre>
http://stackoverflow.com/questions/733824/how-to-run-a-sh-script-in-an-unix-console-mac-terminal/733834#7338341Answer by Neil Butterworth for How to run a .sh-script in an Unix console/Mac terminal?Neil Butterworth2009-04-09T11:39:34Z2009-04-09T11:39:34Z<p>For the bourne shell:</p>
<pre><code>sh myscript.sh
</code></pre>
<p>For bash:</p>
<pre><code>bash myscript.sh
</code></pre>
http://stackoverflow.com/questions/733824/how-to-run-a-sh-script-in-an-unix-console-mac-terminal/733901#7339016Answer by lhunath for How to run a .sh-script in an Unix console/Mac terminal?lhunath2009-04-09T11:58:50Z2009-04-09T11:58:50Z<p>To run a non-executable <code>sh</code> script, use:</p>
<pre><code>sh myscript
</code></pre>
<p>To run a non-executable <code>bash</code> script, use:</p>
<pre><code>bash myscript
</code></pre>
<p>To start an executable (which is any file with executable permission); you just specify it by its path:</p>
<pre><code>/foo/bar
/bin/bar
./bar
</code></pre>
<p>To make a script executable, give it the necessary permission:</p>
<pre><code>chmod +x bar
./bar
</code></pre>
<p>When a file is executable, the <strong>kernel</strong> is responsible for figuring out how to execte it. For non-binaries, this is done by looking at the first line of the file. It should contain a <code>hashbang</code>:</p>
<pre><code>#! /usr/bin/env bash
</code></pre>
<p>The hashbang tells the kernel what program to run (in this case the command <code>/usr/bin/env</code> is ran with the argument <code>bash</code>). Then, the script is passed to the program (as second argument) along with all the arguments you gave the script as subsequent arguments.</p>
<p>That means <strong>every script that is executable should have a hashbang</strong>. If it doesn't, you're not telling the kernel what it <em>is</em>, and therefore the kernel doesn't know what program to use to interprete it. It could be <code>bash</code>, <code>perl</code>, <code>python</code>, <code>sh</code>, or something else. (In reality, the kernel will often use the user's default shell to interprete the file, which is very dangerous because it might not be the right interpreter at all or it might be able to parse some of it but with subtle behavioural differences such as is the case between <code>sh</code> and <code>bash</code>).</p>
http://stackoverflow.com/questions/733824/how-to-run-a-sh-script-in-an-unix-console-mac-terminal/734039#7340390Answer by Chas. Owens for How to run a .sh-script in an Unix console/Mac terminal?Chas. Owens2009-04-09T12:42:16Z2009-04-09T12:42:16Z<p>If you want the script to run in the current shell (e.g. you want it to be able to affect your directory or environment) you should say:</p>
<pre><code>. /path/to/script.sh
</code></pre>
<p>or </p>
<pre><code>source /path/to/script.sh
</code></pre>
<p>Note that <code>/path/to/script.sh</code> can be relative, for instance <code>. bin/script.sh</code> runs the <code>script.sh</code> in the <code>bin</code> directory under the current directory.</p>