ohmyzsh/lib/path.zsh
2011-07-29 13:32:44 -05:00

11 lines
274 B
Bash

# Appends to path arra in background to reduce load timey
# example
# path_push /usr/local
function path_push() {
export PATH=$PATH:$1 &>/dev/null
}
# Prepends to path array in background to reduce load time
function path_unshift() {
export PATH=$1:$PATH &>/dev/null
}