print env variable linux code example
Example 1: print environment variables linux
ENV_VAR="hello world"
printenv ENV_VAR
Example 2: bash get environment variable
Just type next command to list all environments varialbes in terminal:
printenv
ENV_VAR="hello world"
printenv ENV_VAR
Just type next command to list all environments varialbes in terminal:
printenv