12 lines
244 B
Bash
12 lines
244 B
Bash
|
# ~/.bash_profile: executed by bash(1) for login shells.
|
||
|
|
||
|
# include .bashrc if it exists
|
||
|
if [ -f ~/.bashrc ]; then
|
||
|
. ~/.bashrc
|
||
|
fi
|
||
|
|
||
|
# set PATH so it includes user's private bin if it exists
|
||
|
if [ -d ~/bin ] ; then
|
||
|
PATH=~/bin:"${PATH}"
|
||
|
fi
|