shell-base/load/02-system-path
David Kebler 0d4481e291 refactor: more new session loading to anything under "load" subirectory (by default) still can add additional loading directories as before.
refactor of debug module using BASH_DEBUG as filename in user shell suddirectory  logs/

improved bindfs and btrfs modules
2023-02-22 11:39:34 -08:00

13 lines
No EOL
364 B
Bash

#!/bin/bash
module_load system-path
# if sudo user then give access to these paths
if [[ $(groups | grep sudo ) ]]; then
export PATH=$PATH:/sbin:/usr/sbin:/usr/local/sbin
fi
# prepend these take prescendence over stuff ones in /usr and /bin
# requires system-path module loaded
path_prepend /opt/bin
path_prepend "$HOME/bin"
path_prepend "$HOME/.local/bin"