cd

Override cd to automatically run ls after changing directories.

#!/usr/bin/env sh
cd() {
  builtin cd "$@" || return $?
  ls
}
download cd