Skip to content

Instantly share code, notes, and snippets.

@jasoncale
Created August 5, 2009 20:06
Show Gist options
  • Save jasoncale/162914 to your computer and use it in GitHub Desktop.
Save jasoncale/162914 to your computer and use it in GitHub Desktop.
pathed_cd () {
if [ "$1" == "" ]; then
cd
else
cd "$1"
fi
pwd > ~/.cdpath
}
alias cd="pathed_cd"
if [ -f ~/.cdpath ]; then
cd $(cat ~/.cdpath)
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment