I have an environment variable like
ABC_XYZ=false
When I echo $ABC_XYZ
It gives me false
Now I am inside a script I do these steps
>echo $ABC_XYZ
false
>ABC_XYZ=true
>echo $ABC_XYZ
true
Now after exiting from the script
echo $ABC_XYZ again gives me false
Any way through which i can set the value as true from inside the script.
Thanks in advance.