set environment variable windows using bash code example
Example 1: how to set environment variable using bash
# set variable environment
export fullname="restu wahyu saputra"
echo $fullname
Example 2: bash set environment variable
# Linux - Bash
# syntax
# export *=*;
# example
export ORACLE_SID='sales_database';
Example 3: bash get environment variable
Just type next command to list all environments varialbes in terminal:
printenv