summaryrefslogtreecommitdiffstats
path: root/tools/choose-default-locale.sh
blob: 3b3003835cebe3877ff0181cc2573441045c537f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

# Fedora uses C.utf8 but Debian uses C.UTF-8
if locale -a | grep -xq -E 'C\.(utf8|UTF-8)'; then
        echo 'C.UTF-8'
elif locale -a | grep -xqF 'en_US.utf8'; then
        echo 'en_US.UTF-8'
else
        echo 'C'
fi