7 lines
132 B
Bash
7 lines
132 B
Bash
# Set the default LANG to something sensible if it is unset
|
|
if [ -z "$LANG" ]; then
|
|
source /etc/locale.conf
|
|
export LANG
|
|
|
|
fi
|