When to use exported?
Score: 4.1/5 (7 votes) export makes the variable available to sub-processes. means that the variable name is available to any process you run from that shell process. If you want a process to make use of this variable, use export , and run the process from that shell.What is export used for?Export i...