@Una A simple classic:
alias ..="cd .."
alias ...="cd ../.."
alias ....="cd ../../.."
and also handy:
# Create a new directory and enter it
function mkd() {
mkdir -p "$@" && cd "$_";
}
Lots more goodies via @mathias dotfiles:
https://github.com/mathiasbynens/dotfiles