Changes

Jump to navigation Jump to search
178 bytes added ,  00:51, 27 March 2015
Line 8: Line 8:     
=== Variables ===
 
=== Variables ===
 +
==== Local Variables ====
 +
<source lang="bash">
 +
#!/bin/bash
 +
HELLO=Hello
 +
function hello {
 +
        local HELLO=World
 +
        echo $HELLO
 +
}
 +
echo $HELLO
 +
hello
 +
echo $HELLO
 +
</source>
 +
 
=== Strings ===
 
=== Strings ===
 
=== Loops ===
 
=== Loops ===

Navigation menu