linux variables code example
Example 1: shell script variable
TEXT="Hello World!"
echo $TEXT
# ouput: Hello World!
Example 2: linux set environment
# syntax
# setenv SHELL *<filepath-of-file-containing-environment-settings>
# example
setenv SHELL /usr/bin/bash