diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-15 08:12:40 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-15 08:12:40 -0500 |
commit | 786adf80589621bedd25488f08ba4e1dc6831282 (patch) | |
tree | 7dfe3bb0857c780c823f7f8ae258d430c1f125f1 | |
parent | ba3d9a5ff6dc0470a5df8ed836622faff9b87709 (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.
-rw-r--r-- | chapter9/bashprofile.sh | 1 |
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 |