In your #shell, the `type` build-in command shows how a name would be interpreted if used as a
command name:
type cd ls rm adb
=> cd is a shell builtin
=> ls is aliased to `ls --color=auto'
=> rm is hashed (/bin/rm)
=> adb is /opt/android-sdk-linux/platform-tools/adb