2020-11-13 10:25:04 -08:00
|
|
|
#!/bin/bash
|
|
|
|
# uncomment these for debugging.
|
|
|
|
# echo ---- sourcing system wide bash.bashrc ---
|
|
|
|
# [ $EUID -eq 0 ] && echo 'Root User' || echo 'Non Root User'
|
|
|
|
# [[ $- == *i* ]] && echo 'Interactive' || echo 'Not interactive'
|
|
|
|
# shopt -q login_shell && echo 'Login shell' || echo 'Not login shell'
|
|
|
|
# echo ----
|
|
|
|
# echo sourcing $BASH_SHELL_LOAD
|
|
|
|
|
2020-11-18 15:32:09 -08:00
|
|
|
|
2020-11-13 10:25:04 -08:00
|
|
|
source $BASH_SHELL_LOAD
|