$ cd() { builtin cd $* && ls; } $ cd / bin boot cdrom dev etc home lib lib64 [...]
cd() { builtin cd "$@" && ls; }