7 lines
177 B
Bash
7 lines
177 B
Bash
#!/bin/sh
|
|
|
|
command -v locale >/dev/null 2>&1 || return
|
|
|
|
! locale -a | grep -q en_US.utf8 || export LANG=en_US.utf8
|
|
! locale -a | grep -q en_DK.utf8 || export LC_TIME=en_DK.utf8
|