How to run a .sh-script in an Unix console/Mac terminal? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T07:27:14Z http://stackoverflow.com/feeds/question/733824 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/733824/how-to-run-a-sh-script-in-an-unix-console-mac-terminal 0 How to run a .sh-script in an Unix console/Mac terminal? P-A 2009-04-09T11:36:26Z 2009-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#733833 1 Answer by P-A for How to run a .sh-script in an Unix console/Mac terminal? P-A 2009-04-09T11:39:32Z 2009-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#733834 1 Answer by Neil Butterworth for How to run a .sh-script in an Unix console/Mac terminal? Neil Butterworth 2009-04-09T11:39:34Z 2009-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#733901 6 Answer by lhunath for How to run a .sh-script in an Unix console/Mac terminal? lhunath 2009-04-09T11:58:50Z 2009-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#734039 0 Answer by Chas. Owens for How to run a .sh-script in an Unix console/Mac terminal? Chas. Owens 2009-04-09T12:42:16Z 2009-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>