Hi,
I have found a problem in our FC8 linux machines with the LANG variable when running a command through ssh.
When in a terminal, I can see that my LANG variable is "es_ES"
[angelv@italia ~]$ echo $LANG
es_ES
If I connect back to my machine through ssh, there are no problems and $LANG is still "es_ES"
[angelv@italia ~]$ ssh italia
Last login: Mon Jul 26 12:51:12 2010 from XXXXXXXXXXXX
[angelv@italia ~]$ echo $LANG
es_ES
[angelv@italia ~]$
But if I try to run a command with ssh, then that variable is undefined...
[angelv@italia ~]$ ssh italia 'echo $LANG'
LANG: Undefined variable.
[angelv@italia ~]$
Does anybody know where I should look to find the culprit?