Files
dotfiles/bash_profile
2024-08-09 12:27:45 +02:00

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