Created
September 14, 2018 11:02
-
-
Save FeroVolar/e8000c18fd3628a32812f911f5a76558 to your computer and use it in GitHub Desktop.
Bash /etc/profile for macOS 10.13.x
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# System-wide .profile for sh(1) | |
if [ -x /usr/libexec/path_helper ]; then | |
eval `/usr/libexec/path_helper -s` | |
fi | |
if [ "${BASH-no}" != "no" ]; then | |
[ -r /etc/bashrc ] && . /etc/bashrc | |
fi | |
export LC_ALL=en_US.UTF-8 | |
export LANG=en_US.UTF-8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment