summaryrefslogtreecommitdiffstats
path: root/bashrc/common/locale.sh
blob: cfe9f2685ef1a06cb03c88d4285ca3d1b2324e17 (plain) (blame)
1
2
3
4
5
6
7
8
9
# find a usuable locale

eval unset ${!LC_*} LANG

if [ -e "/usr/share/locales/en_US.UTF-8" ]; then
	export LANG="en_US.UTF-8"
fi

export LC_COLLATE="C"