↧
Answer by tk-noodle for Set environment variable globally
I assume you did something likeTZ=:/etc/localtimeThis will not however propagate to subshells - and you normal bash shell is a subshell of the wider environment. So you need to do:export...
View ArticleSet environment variable globally
I recently saw this blog post regarding performance when the TZ environment variable is not set:https://blog.packagecloud.io/eng/2017/02/21/set-environment-variable-save-thousands-of-system-calls/I...
View Article