#Hello World in Shell scripting

<div class="text-success lead">
A shell script is a script written for the shell, or command line interpreter. 
Typical operations performed by shell scripts include file manipulation, program execution, and printing text.
</div>

The shell scripting interpreter installed by default on Debian is the GNU bash..

<img src="./gnu.jpg"/>

##Hello world example

This is the "Hello world !" source code basic example.

<pre class="prettyprint">
#!/bin/sh
echo Hello world !
</pre>

Save it with in <b>hello.sh</b> then run it typing:

<pre class="prettyprint">
~# chmod +x hello.sh
~# ./hello.sh
</pre>

##Related links

<ul>
<li><a href="http://www.gnu.org/software/bash/">GNU Bash official website</a></li>
<li><a href="http://en.wikipedia.org/wiki/Shell_script">Wikipedia definition of Shell scripting</a></li>
</ul>

