Environment Variables
You can run printenv or env in your terminal
1)How to set Environment variables:-
myVAR=hello
printenv myVAR=hello OR echo $myVAR
2)How to unset it?
unset myVAR then echo $myVAR
3)If you type export myVAR=hello then you can do echo $myVAR
You can add...
bilalansari.hashnode.dev1 min read