blob: 1e817cef8775353e6a946edcd95abfe36c86dff7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# ~/.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
|