Environment Variables in Linux
Please Note
oracle configurationintermediate
by OracleDba
14 views
Please Note
12345678910111213141516
syntax : export =
e.g.
export MY_WEBSITE=learnomate.org
export ARTICLE="Environment Variables in Linux"
export dba ='Learnomate is "BEST" Training institute.'
e.g.
echo "Current website is $MY_WEBSITE"
echo "You are reading $ARTICLE"
env
To filter all the variables listed by env command
env | grep MY --> prints all vars containing MY
env | grep HOME --> prints all vars containing HOMEPlease to add comments
No comments yet. Be the first to comment!