I'm trying to set just specific env variable:
export LD_LIBRARY_PATH=mqlibs/lib64
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:mqlibs/lib64
export LD_LIBRARY_PATH="mqlibs/lib64"
It doesn't work wherever I set it. (in .bashrc or .bash_profile or just in Terminal) But this simple one does work:
export aaa=test
what am I doing wrong?