On 12/24/19 3:40 PM, Ed Greshko wrote:
OK, why did you not enter the command as I typed it? It would have avoided any issues of what the PID is. Anyway, the PID is 1652 but your next command is wrong.... It should have been.... cat /proc1652/environ | grep "LC_TIME=[Cc]" ; echo $?
You dropped a slash. Wouldn't it be easier to just do "grep -z LC_TIME= /proc/1652/environ"? That way if it doesn't match, then you will also know what it is. I did figure out why you had the echo after and I adjusted my grep command to account for that. The environ "file" is zero-terminated strings which grep by default assumes to be binary. The "-z" makes it consider nulls as newlines.
$ grep -z LC_TIME /proc/$$/environ LC_TIME=en_US.UTF-8 _______________________________________________ users mailing list -- users@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to users-leave@xxxxxxxxxxxxxxxxxxxxxxx Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@xxxxxxxxxxxxxxxxxxxxxxx