shell-base/env/01-path
David Kebler 0ac5906eee refactor the way the module library is loaded
added startup script callable from profile.d
renamed setup.sh to load.sh
added rsync copy function cprs
added shell.env that is called by /etc/profile to set up access to this  and related repos
2020-11-13 10:25:04 -08:00

17 lines
399 B
Bash

#!/bin/bash
# if [[ $(groups | grep sudo ) ]]; then
# path_insert /sbin after /usr/bin
# pathg bin
# path_insert /usr/sbin after :/sbin
# pathg bin
# path_insert /usr/local/sbin after /usr/sbin
# pathg sbin
# fi
if [[ $(groups | grep sudo ) ]]; then
export PATH=$PATH:/sbin:/usr/sbin:/usr/local/sbin
fi
path_append /opt/bin
path_append "$HOME/bin"
path_append "$HOME/.local/bin"