Running following version of zsh
on Mac OS X.
zsh --version
zsh 5.8 (x86_64-apple-darwin20.0)
Im trying to set an environment variable called token
in interactive shell however Im unable to set this for some reason. Is this because it has a special meaning in zsh ?
token=test
and then echo $token
produces $token
instead of test
.
however If I have,
TOKEN=test
then echo $TOKEN
produces test
.