8 lines
140 B
Bash
8 lines
140 B
Bash
#!/usr/bin/env bash
|
|
|
|
# bash_profile is executed immediately after logging in
|
|
|
|
if [[ -f "$HOME/.bashrc" ]]; then
|
|
source "$HOME/.bashrc"
|
|
fi
|