From 26d6bb6504acabfdb76d6a61da64e294ea02ac70 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Fri, 22 Jul 2022 17:22:49 +0100 Subject: [PATCH] Add various GNU functions to our PATH --- zshrc.zsh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zshrc.zsh b/zshrc.zsh index 7db7d45..1d828bf 100644 --- a/zshrc.zsh +++ b/zshrc.zsh @@ -81,6 +81,11 @@ export PATH="$PATH:$(brew --prefix)/go/bin:$(brew --prefix)/opt/go/libexec/bin:$ GPG_TTY=`tty` export GPG_TTY +# Add various GNU functions +export PATH="$(brew --prefix)/opt/coreutils/libexec/gnubin:$PATH" +export PATH="$(brew --prefix)/opt/findutils/libexec/gnubin:$PATH" +export PATH="$(brew --prefix)/opt/gnu-sed/libexec/gnubin:$PATH" + # Add Totara Docker helper functions export PATH="$PATH:$HOME/git/totara-docker-dev/bin"