type (Unix)

From Wikipedia, the free encyclopedia
Jump to navigation Jump to search
type
Original authorAT&T Corporation
DevelopersVarious open-source and commercial developers
Initial release1984; 42 years ago (1984)
Repository
  • {{URL|example.com|optional display text}}Lua error in Module:EditAtWikidata at line 29: attempt to index field 'wikibase' (a nil value).
Engine
    Lua error in Module:EditAtWikidata at line 29: attempt to index field 'wikibase' (a nil value).
    Operating systemUnix and Unix-like
    PlatformCross-platform
    TypeCommand

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

    Function

    [edit | edit source]

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

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

    Examples

    [edit | edit source]
    $ 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

    [edit | edit source]

    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

    [edit | edit source]

    References

    [edit | edit source]
    1. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
    2. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
    3. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
    4. ^ Lua error in Module:Citation/CS1/Configuration at line 2172: attempt to index field '?' (a nil value).
    5. ^ Native Win32 ports of some GNU utilities