$ export MYVAR=1729
$ echo $MYVAR
1729
# set variable environment
export fullname="restu wahyu saputra"
echo $fullname
# Linux - Bash
# syntax
# export *<variable-name>=*<variable-value>;
# example
export ORACLE_SID='sales_database';
export VARNAME="my value" # shorter, less portable version
# Use source or . instead of bash
source script.sh
# OR
. script.sh