removed files
[~madcoder/dotfiles.git] / bash_profile
1 # ~/.bash_profile: executed by bash(1) for login shells.
2 # see /usr/share/doc/bash/examples/startup-files for examples.
3 # the files are located in the bash-doc package.
4
5 # the default umask is set in /etc/login.defs
6 #umask 022
7
8 [ -x /bin/zsh ] && exec zsh -i
9
10 # include .bashrc if it exists
11 if [ -f ~/.bashrc ]; then
12     . ~/.bashrc
13 fi
14
15 # set PATH so it includes user's private bin if it exists
16 if [ -d ~/bin ] ; then
17     PATH=~/bin:"${PATH}"
18 fi