Skip to content

Instantly share code, notes, and snippets.

@hughfdjackson
Created June 12, 2013 14:57
Show Gist options
  • Select an option

  • Save hughfdjackson/5766045 to your computer and use it in GitHub Desktop.

Select an option

Save hughfdjackson/5766045 to your computer and use it in GitHub Desktop.
cd () {
if [[ "x$*" = "x..." ]]
then
cd ../..
elif [[ "x$*" = "x...." ]]
then
cd ../../..
elif [[ "x$*" = "x....." ]]
then
cd ../../../..
elif [[ "x$*" = "x......" ]]
then
cd ../../../../..
else
builtin cd "$@"
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment