Jump to content

type (Unix)

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 89.204.139.248 (talk) at 20:15, 21 May 2018 (Undid revision 840830618 by 98.31.55.225 (talk)). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

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

Function

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

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

The type command was added to the Bourne Shell in 1984 with SVR2 but is not part of the POSIX standard. With a POSIX shell, similar behavior is retrieved with

command -V name

In the Korn shell, the command whence provides similar functionality.[1]

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

See also

References

  1. ^ Siever, Ellen (2005). Linux in a Nutshell. Nutshell handbooks. O'Reilly Media, Inc. 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.