-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC2168
Joachim Ansorg edited this page Nov 12, 2021
·
2 revisions
local foo=bar
echo "$foo"
foo=bar
echo "$foo"
In Bash, local
can only be used in functions. In other contexts, it's an error.
It's possible to source files containing local
from a function context but not from any other context. This is not good practice, but in these cases you can ignore this error.