5e45c1f23a
refacted load.sh and startup.sh accordingly and also used loop to process the shell repos switched from export to declare for module.lib allows multiple network domains to be set in shell.env. This allows primary and vpn setups moved docker and language files out of base added comment functions
6 lines
209 B
Bash
6 lines
209 B
Bash
#!/bin/bash
|
|
# uncomment for debugging
|
|
# echo ".bash_profile sourced at user $USER login"
|
|
|
|
# only source .bashrc if interactive login shell
|
|
[[ $- == *i* ]] && [[ -f "$HOME/.bashrc" ]] && source "$HOME/.bashrc"
|