| 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 === |