Skip to content
FLAVIO COPES
flaviocopes.com
2026

Linux commands: type

By Flavio Copes

Learn how the Linux type command tells you how a command is interpreted, as an executable, a shell built-in, a function, or an alias, and what it points to.

~~~

A command can be one of those 4 types:

The type command can help figure out this, in case we want to know or we’re just curious. It will tell you how the command will be interpreted.

The output will depend on the shell used. This is Bash:

Terminal showing type command output in Bash shell identifying various commands as executables, built-ins, and aliases

This is Zsh:

Terminal showing type command output in Zsh shell demonstrating command types and aliases like ll pointing to ls -al

This is Fish:

Terminal showing type command output in Fish shell displaying function definitions and built-in commands

One of the most interesting things here is that for aliases it will tell you what is aliasing to. You can see the ll alias, in the case of Bash and Zsh, but Fish provides it by default, so it will tell you it’s a built-in shell function.

The type command works on Linux, macOS, WSL, and anywhere you have a UNIX environment

Tagged: CLI · All topics
~~~

Related posts about cli: