From 786adf80589621bedd25488f08ba4e1dc6831282 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Thu, 15 Apr 2021 08:12:40 -0500 Subject: Set LC_TIME to POSIX since coreutils 8.28 has changed date behaviour from gnulib where some locales with 12 hour time data will output date's time in 12 hour instead of 24 hour format. View coreutil's changelog. --- chapter9/bashprofile.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/chapter9/bashprofile.sh b/chapter9/bashprofile.sh index 9636b3a..455a6fd 100644 --- a/chapter9/bashprofile.sh +++ b/chapter9/bashprofile.sh @@ -4,6 +4,7 @@ cat > /etc/profile << "EOF" # Begin /etc/profile export LANG=en_US +export LC_TIME=POSIX # End /etc/profile EOF -- cgit v1.2.3-54-g00ecf