#!/bin/bash # Simple script illustrates the scope of # a global variable and a local variable. # All local variables must be prefixed with local on the first use # function hello { local HELLO=World echo $HELLO } HELLO=Hello echo $HELLO hello echo $HELLO