aboutsummaryrefslogtreecommitdiff
path: root/common/.bash_profile
blob: f6c3ee43644154f0347b726af6f8726119da06d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
# ~/.bash_profile

# Source ~/.profile if it exists (environment variables)
if [ -f "$HOME/.profile" ]; then
    . "$HOME/.profile"
fi

# Source ~/.bashrc for interactive settings (aliases, prompt, etc.)
if [ -f "$HOME/.bashrc" ]; then
    . "$HOME/.bashrc"
fi