# .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
        . ~/.bashrc
fi

# User specific environment and startup programs

PATH1=$PATH:$HOME/bin 
for x in $(echo $PATH1 |tr ":" " ")
do
if [ -d "$x" ]; then 
:
else
PATH1=$(echo $(echo ${PATH1//:$x/}))
fi
done

PATH=$(echo $PATH1)

export PATH
