I want to set the locale.
I have this in my ~/.profile
#language
export LANG=en_GB.utf8
export TESTING123=en_GB.utf8
But when I type:
echo $LANG $TESTING123
I get (LANG not set, but TESTING123 is set )
en_US.utf8 en_GB.utf8
If I do export LANG=en_GB.utf8 directly in the shell it all works
#export LANG=en_GB.utf8
#echo $LANG
en_GB.utf8
#locale
LANG=en_GB.utf8
LANGUAGE=
LC_CTYPE="en_GB.utf8"
LC_NUMERIC="en_GB.utf8"
LC_TIME="en_GB.utf8"
LC_COLLATE="en_GB.utf8"
LC_MONETARY="en_GB.utf8"
LC_MESSAGES="en_GB.utf8"
LC_PAPER="en_GB.utf8"
LC_NAME="en_GB.utf8"
LC_ADDRESS="en_GB.utf8"
LC_TELEPHONE="en_GB.utf8"
LC_MEASUREMENT="en_GB.utf8"
LC_IDENTIFICATION="en_GB.utf8"
LC_ALL=
system is Debian 7.2, shell is bash.
echo $LANG > /tmp/testjust after export command ?