global and local variables
suggest changeIntroduction
By default, every variable in bash is global to every function, script and even the outside shell if you are declaring your variables inside a script.
If you want your variable to be local to a function, you can use local
to have that variable a new variable that is independent to the global scope and whose value will only be accessible inside that function.
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents