dotfiles/bash_profile
2020-08-12 02:56:32 +04:00

12 lines
252 B
Bash

# /etc/skel/.bash_profile
# This file is sourced by bash for login shells. The following line
# runs your .bashrc and is recommended by the bash info pages.
if [[ -f ~/.bashrc ]] ; then
. ~/.bashrc
fi
if [[ -f ~/.profile ]] ; then
. ~/.profile
fi