aboutsummaryrefslogtreecommitdiffstats
path: root/chapter9
diff options
context:
space:
mode:
authorWilliam Harrington <kb0iic@berzerkula.org>2021-04-15 08:12:40 -0500
committerWilliam Harrington <kb0iic@berzerkula.org>2021-04-15 08:18:53 -0500
commit801a63d7edbb098fdf4fa384366ba91e39845c07 (patch)
treef8932d7caf9d573b33c977e0bf1dfa10f2ae410d /chapter9
parent794e9f41d389d047a8fc8d98200e9af47323bf99 (diff)
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.
Diffstat (limited to 'chapter9')
-rw-r--r--chapter9/bashprofile.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/chapter9/bashprofile.sh b/chapter9/bashprofile.sh
index e52d25b..77bc1bb 100644
--- a/chapter9/bashprofile.sh
+++ b/chapter9/bashprofile.sh
@@ -5,6 +5,7 @@ cat > /etc/profile << "EOF"
# Begin /etc/profile
export LANG=en_US
+export LC_TIME=POSIX
# End /etc/profile
EOF