diff --git a/.profile b/.profile index 4d038a96..73a5a848 100755 --- a/.profile +++ b/.profile @@ -40,6 +40,11 @@ while [ "${PATH#:}" != "$PATH" ]; do PATH="${PATH#:}" done PATH="$desiredpath:$PATH" +# Homebrew +gnubin="/usr/local/opt/coreutils/libexec/gnubin" +if [ -d "$gnubin" ]; then + PATH="$gnubin:$PATH" +fi # Grab bash_completion, if it exists [ -f "/etc/profile.d/bash_completion.sh" ] && . "/etc/profile.d/bash_completion.sh"