6 lines
79 B
Bash
6 lines
79 B
Bash
|
|
# Load .bashrc if it exists
|
|
if [ -f ~/.bashrc ]; then
|
|
source ~/.bashrc
|
|
fi
|