Hello again, today we are discussing exporting a variable in a UNIX Shell. I am sure that sometimes, you have come across something like the following code snippet:
debug=true
or:
export debug=true
In both cases, we are assigning the value of true to a variable named debug. But what does this mystical export statement do? Continue reading “Exporting a variable (inheritance) in a UNIX Shell. What is it and why.”