mirror of
https://github.com/ohmybash/oh-my-bash.git
synced 2024-05-11 05:55:37 +00:00
12 lines
213 B
Bash
12 lines
213 B
Bash
# .bash_profile -*- mode: sh -*-
|
|
|
|
# Load login settings and environment variables
|
|
if [[ -f ~/.profile ]]; then
|
|
source ~/.profile
|
|
fi
|
|
|
|
# Load interactive settings
|
|
if [[ -f ~/.bashrc ]]; then
|
|
source ~/.bashrc
|
|
fi
|