2020-11-13 10:25:04 -08:00
|
|
|
#!/bin/bash
|
2020-11-18 15:32:09 -08:00
|
|
|
# uncomment for debugging
|
|
|
|
# echo ".bash_profile sourced at user $USER login"
|
2020-11-13 10:25:04 -08:00
|
|
|
|
2020-11-18 15:32:09 -08:00
|
|
|
# only source .bashrc if interactive login shell
|
|
|
|
[[ $- == *i* ]] && [[ -f "$HOME/.bashrc" ]] && source "$HOME/.bashrc"
|