summaryrefslogtreecommitdiff
path: root/dotrc/.bashrc
blob: 858116c5ab7155dbec788fc67cec97fd197843bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
if [ "$PS1" != "" ] ; then
    PS1="`hostname -s`$ "
fi

test -s $HOME/.bash_aliases && . $HOME/.bash_aliases

if [ ! "$(echo $PATH | fgrep $HOME/bin)" ] ; then
    export PATH=$HOME/bin:$PATH
fi

if [ ! "$(echo $PATH | fgrep $HOME/.local/bin)" ] ; then
    export PATH=$HOME/.local/bin:$PATH
fi