aboutsummaryrefslogtreecommitdiff
path: root/bashrc.dot.link
blob: ed3e3610732baa574c229675ca8774962cc3e74c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#
# Bash rc file
#

# See http://superuser.com/questions/90535/how-do-i-turn-of-auto-echo-in-bash-when-i-cd
function cd {
  if [ -z "$*" ]; then
    destination=~
  else
    destination=$*
  fi

  builtin cd "${destination}" > /dev/null
}

# Load the profile
. $HOME/.profile