In command line Ubuntu LTS16.04, I have:
IMAGE_FILE="a/b/c"
I want to change the value of this variable with python statements. What I have to do? For instance, I want the variable to be set to null "".
I used os.environ, however after exiting python exit (). Run echo $ IMAGE_FILE is still the old value
Thank you for reading the question!