diff options
Diffstat (limited to '')
-rw-r--r-- | profile/.profile.d/30_path.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/profile/.profile.d/30_path.sh b/profile/.profile.d/30_path.sh new file mode 100644 index 0000000..1469162 --- /dev/null +++ b/profile/.profile.d/30_path.sh @@ -0,0 +1,19 @@ +#!/bin/sh + +export PATH="/sbin:/bin:/usr/sbin:/usr/bin" + +path_prepend() { + [ ! -d "${1}" ] && return + echo "${PATH}" | grep -q "\(:\|^\)${1}\(:\|$\)" && return + export PATH="${1}:${PATH}" +} + +path_append() { + [ ! -d "${1}" ] && return + echo "${PATH}" | grep -q "\(:\|^\)${1}\(:\|$\)" && return + export PATH="${PATH}:${1}" +} + +path_append "/usr/local/bin" +path_append "${HOME}/.bin" +path_append "${HOME}/.local/bin" |