# Add ~/.local/bin to PATH if it exists [ -d "$HOME"/.local/bin ] && PATH=$HOME/.local/bin:$PATH # Load all supplementary scripts in ~/.profile.d for sh in "$HOME"/.profile.d/*.sh ; do [ -e "$sh" ] && . "$sh" done unset -v sh # If ~/.shinit exists, set ENV to that if [ -f "$HOME"/.shinit ] ; then ENV=$HOME/.shinit export ENV fi