Timeline for How can I find where LANG, LANGUAGE and MAIL environmental variables are set?
Current License: CC BY-SA 3.0
9 events
when toggle format | what | by | license | comment | |
---|---|---|---|---|---|
Jun 11, 2020 at 12:04 | history | edited | CommunityBot |
Commonmark migration
|
|
Jul 14, 2014 at 12:19 | comment | added | Sparhawk | @terdon, these files don't exist on the Raspbian. | |
Jul 14, 2014 at 11:32 | comment | added | terdon♦ |
Other possibilities are ~/.bash_profile and ~/.bash_login .
|
|
Jul 14, 2014 at 11:00 | answer | added | HBruijn | timeline score: 2 | |
Jul 14, 2014 at 10:33 | comment | added | Sparhawk | Thanks @vinc17. This file is indeed present; I've edited the question. | |
Jul 14, 2014 at 10:33 | history | edited | Sparhawk | CC BY-SA 3.0 |
more troubleshooting
|
Jul 14, 2014 at 9:48 | comment | added | vinc17 |
Yes, you should recursive-grep the entire /etc directory. Under Debian, locales are set in /etc/default/locale .
|
|
Jul 14, 2014 at 8:43 | comment | added | Oleg Pryadko |
How about doing a recursive content search in the entire /etc, home, and other probable directories? grep "\bLANG=" -r /etc 2>/dev/null or find /etc -type f -exec grep "\bLANG=" {} + 2>/dev/null
|
|
Jul 14, 2014 at 7:10 | history | asked | Sparhawk | CC BY-SA 3.0 |