I\'m trying to learn that if I have to add export statement to set a variable in a bash_profile file . How would I do that ? For example if I have to add export AX = \'name\' t
Typically, variables are declared and defined in one place and exported in another:
AX='name' export AX