Internal Command
Internal commands are the commands that are executed
directly by the shell. These commands will not have a separate process. You can’t
find these commands in PATH directories in system because these are built in shell
command. echo is an external command and if you try to find its path it will
show shell built in.
$ type echo
echo is a shell builtin
when you run echo the system will not search in PATH
location, it will execute it from shell builtin commands that are stored in
some separate file.

