Menu
Home Explore People Places Arts History Plants & Animals Science Life & Culture Technology
On this page
type (Unix)
Unix command

In Unix and Unix-like operating systems, type is a command that describes how its arguments would be interpreted if used as command names.

Related Image Collections Add Image
We don't have any YouTube videos related to type (Unix) yet.
We don't have any PDF documents related to type (Unix) yet.
We don't have any Books related to type (Unix) yet.
We don't have any archived web articles related to type (Unix) yet.

Function

Where applicable, type will display the command name's path.12 Possible command types are:

The command returns a non-zero exit status if command names cannot be found.

Examples

$ type test test is a shell builtin $ type cp cp is /bin/cp $ type unknown unknown not found $ type type type is a shell builtin

History

The type command was a shell builtin for Bourne shell that was introduced in AT&T's System V Release 2 (SVR2) in 1984,3 and continues to be included in many other POSIX-compatible shells such as Bash. However, type is not part of the POSIX standard. With a POSIX shell, similar behavior is retrieved with

command -V name

In the KornShell, the command whence provides similar functionality.4

The command is available as a separate package for Microsoft Windows as part of the UnxUtils collection of native Win32 ports of common GNU Unix-like utilities.5

See also

The Wikibook Guide to Unix has a page on the topic of: Commands

References

  1. "Use Type Command in Linux to Get More Info About Commands". Linux Handbook. 2020-05-11. Retrieved 2025-02-09. https://linuxhandbook.com/type-command/

  2. "type command in Linux with Examples". GeeksforGeeks. 2019-05-06. Retrieved 2025-02-09. https://www.geeksforgeeks.org/type-command-in-linux-with-examples/

  3. "traditional Bourne shell family / history and development". www.in-ulm.de. Retrieved 2018-10-07. https://www.in-ulm.de/~mascheck/bourne/index.html

  4. Siever, Ellen (27 July 2005). Linux in a Nutshell. Nutshell handbooks. O'Reilly Media, Inc. (published 2005). p. 695. ISBN 9780596009304. Retrieved 2016-07-05. whence [...] Korn shell only. Show whether each command is a Unix command, a built-in command, a defined shell function, or an alias. 9780596009304

  5. Native Win32 ports of some GNU utilities http://unxutils.sourceforge.net/