diff options
Diffstat (limited to '.zsh.before/path.zsh')
-rw-r--r-- | .zsh.before/path.zsh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.zsh.before/path.zsh b/.zsh.before/path.zsh index f19b704..4db5668 100644 --- a/.zsh.before/path.zsh +++ b/.zsh.before/path.zsh @@ -8,4 +8,10 @@ [ -d "${HOME}/bin" ] && PATH="${HOME}/bin:${PATH}" # Debilian [ -d "/usr/sbin" ] && [ ! -L "/usr/sbin" ] && PATH="${PATH}:/usr/sbin" - +# whackOS +[ -d "/usr/local/opt/coreutils/libexec/gnubin" ] && PATH="/usr/local/opt/coreutils/libexec/gnubin:$PATH" +[ -d "/usr/local/opt/gnu-sed/libexec/gnubin" ] && PATH="/usr/local/opt/gnu-sed/libexec/gnubin:$PATH" +[ -d "/usr/local/opt/gnu-tar/libexec/gnubin" ] && PATH="/usr/local/opt/gnu-tar/libexec/gnubin:$PATH" +[ -d "/usr/local/opt/gnu-which/libexec/gnubin" ] && PATH="/usr/local/opt/gnu-which/libexec/gnubin:$PATH" +[ -d "/usr/local/opt/findutils/libexec/gnubin" ] && PATH="/usr/local/opt/findutils/libexec/gnubin:$PATH" +[ -d "/usr/local/opt/grep/libexec/gnubin" ] && PATH="/usr/local/opt/grep/libexec/gnubin:$PATH" |