locale: Surpress greps output

This commit is contained in:
2021-10-05 12:01:46 +02:00
parent a42155a64b
commit 2ba63dc413

View File

@@ -2,5 +2,5 @@
command -v locale >/dev/null 2>&1 || return command -v locale >/dev/null 2>&1 || return
! locale -a | grep en_US.utf8 || export LANG=en_US.utf8 ! locale -a | grep -q en_US.utf8 || export LANG=en_US.utf8
! locale -a | grep en_DK.utf8 || export LC_TIME=en_DK.utf8 ! locale -a | grep -q en_DK.utf8 || export LC_TIME=en_DK.utf8