dotfiles

config files for my linux setup
git clone git://edryd.org/dotfiles
Log | Files | Refs | README

bash_profile (369B)


      1 # if running bash
      2 if [ -n "$BASH_VERSION" ]; then
      3     # include .bashrc if found
      4     if [ -f "$HOME/.bashrc" ]; then
      5         . "$HOME/.bashrc"
      6     fi
      7 fi
      8 
      9 # add sbin to PATH
     10 if [ -d "/sbin" ] ; then
     11     PATH="/sbin:$PATH"
     12 fi
     13 if [ -d "/usr/sbin" ] ; then
     14     PATH="/usr/sbin:$PATH"
     15 fi
     16 
     17 # add user's bin to PATH
     18 if [ -d "$HOME/bin" ] ; then
     19     PATH="$HOME/bin:$PATH"
     20 fi
     21