summaryrefslogtreecommitdiffstats
path: root/.profile
diff options
context:
space:
mode:
authorTyler Davis <tyler@gluecode.net>2024-05-18 04:41:05 +0000
committerTyler Davis <tyler@gluecode.net>2024-05-18 04:41:05 +0000
commit137877e86a12411e1ce67cd8d6a783d650410064 (patch)
treef1e2a42ababf5e361d9453643c84fa43df6d2c60 /.profile
parentf3909ce8d41bded61e2de495548daf3118db6ece (diff)
downloaddotfiles-137877e86a12411e1ce67cd8d6a783d650410064.tar.gz
dotfiles-137877e86a12411e1ce67cd8d6a783d650410064.zip
sh: add sbin paths
Diffstat (limited to '.profile')
-rw-r--r--.profile6
1 files changed, 6 insertions, 0 deletions
diff --git a/.profile b/.profile
index 6b5daee..43053cd 100644
--- a/.profile
+++ b/.profile
@@ -56,6 +56,12 @@ Linux)
alias ll="/bin/ls -F -h -A -l"
set -o emacs
set -o tabcomplete
+ if [ -d "/usr/pkg/bin" ]; then
+ export PATH=$PATH:/usr/pkg/bin
+ fi
+ if [ -d "/usr/pkg/sbin" ]; then
+ export PATH=$PATH:/usr/pkg/sbin
+ fi
export PATH=$PATH:/sbin:/usr/sbin:$HOME/.local/bin
;;
esac