aboutsummaryrefslogtreecommitdiffstats
path: root/chapter9/bashprofile.sh
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:12:40 -0500
commit786adf80589621bedd25488f08ba4e1dc6831282 (patch)
tree7dfe3bb0857c780c823f7f8ae258d430c1f125f1 /chapter9/bashprofile.sh
parentba3d9a5ff6dc0470a5df8ed836622faff9b87709 (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/bashprofile.sh')
-rw-r--r--chapter9/bashprofile.sh1
1 files changed, 1 insertions, 0 deletions
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