You are viewing a single comment's thread from:
RE: Bash Script Examples (very very basic)
Since I can't edit the post anymore...
Errata:
It's a good practice to use local to scope variables to your functions to avoid accidentally over-writing a global function of the same name.
While technically not incorrect, that should have read:
It's a good practice to use local to scope variables to your functions to avoid accidentally over-writing a global variable of the same name.