mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
10 lines
166 B
Bash
10 lines
166 B
Bash
# Include .profile if it exists
|
|
if [[ -f ~/.profile ]]; then
|
|
source ~/.profile
|
|
fi
|
|
|
|
# Include .bashrc if it exists
|
|
if [[ -f ~/.bashrc ]]; then
|
|
source ~/.bashrc
|
|
fi
|