From 3877496da00a4b8a5e0c4b0f0ab117d94f7e8e5a Mon Sep 17 00:00:00 2001 From: David Runge Date: Tue, 8 Apr 2014 18:19:42 +0200 Subject: Adding bin folder before /usr/bin/local --- .zsh.before/path.zsh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to '.zsh.before') diff --git a/.zsh.before/path.zsh b/.zsh.before/path.zsh index f463e69..9b1579f 100644 --- a/.zsh.before/path.zsh +++ b/.zsh.before/path.zsh @@ -1,5 +1,5 @@ # < BEFORE $PATH -PATH=$HOME/bin:$PATH +#PATH=$HOME/bin:$PATH # > BEFORE # < AFTER $PATH @@ -14,6 +14,13 @@ PATH=$HOME/bin:$PATH ## RVM PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting + +# replace /usr/local/bin once with $HOME/bin:/usr/local/bin in $PATH +autoload -U regexp-replace +if [[ "$PATH" != *dave/bin:/usr/local/sbin* ]];then + regexp-replace PATH '/usr/local/bin:' '$HOME/bin:/usr/local/sbin:' +fi + ## RASPBERRY PI if [[ "$HOST" == *pitheunlord* ]]; then PATH=$PATH:"/opt/vc/bin:/opt/vc/sbin" -- cgit v1.2.3-54-g00ecf