# Make directory and `cd` into it.
mkcd() {
    mkdir -p -- "$1" && cd -P -- "$1"
}

# cd & ls
cs() {
    cd "$@" && ls
}
