Bash には cd のように Bash 自体に組み込まれているコマンドがあります。 組み込みコマンドか外部コマンドかは type というコマンドで確認できます。
$ type cd
cd is a shell builtin
組み込みコマンドは "builtin" と出力されます。
$ type ftp
ftp is /usr/bin/ftp
外部コマンドは パスが出力されます。
$ type ls
ls is aliased to `ls --color=auto'
エイリアスはこのように出力されます。
エイリアス元を調べるには "-a" オプションを付けます。
$ type -a ls
ls is aliased to `ls --color=auto'
ls is /bin/ls
type コマンドも Bash の組み込みコマンドです。
$ type -t type
builtin