The nested variables prevented me from using BASH more widely ... consider the following:
export SYS_DIR='/home/${LOGNAME}/sys'
export APP_DIR='${SYS_DIR}/app'
I always get
> set
APP_DIR=/home/${LOGNAME}/sys/app
why? lol
and how do I get what I want = /
I am not trying to resolve $ {$ {var}}, but rather the actual lines as shown above
source
share