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