How to see whether a command is a executable or a shell builtin.

The type command for bash will tell you whether a command is a shell built-in or an executable on it`s own. This is very simple to use. This example shows how it works. jason@DESKTOP-G1QN8C6:~$ type -a echo echo is a shell builtin echo is /bin/echojason@DESKTOP-G1QN8C6:~$ type -a echo echo is a shell builtin echo is … Read more