What is the meaning of “export” command in Ubuntu?
4 years ago
Operating System
Export is a command in Bash shell language. When you try to set a variable, it is visible or exported to any subprocess started from that instance of bash. The variable will not exist in the sub-process without the export command.
Bijay Satyal
Oct 22, 2021