Content
Data
License: GNU GPLv3 +
Version number: GNU Bash 5
Developer / owner: Free Software Foundation Inc.
Short description:
The manual page and help for the type built-in Bash command. The type command provides information about the type of command specified.
Man page output
man bash
[...]
type [-aftpP] name [name ...]
With no options, indicate how each name would be interpreted if used as a command
name. If the -t option is used, type prints a string which is one of alias, key-
word, function, builtin, or file if name is an alias, shell reserved word, func-
tion, builtin, or disk file, respectively. If the name is not found, then nothing
is printed, and an exit status of false is returned. If the -p option is used,
type either returns the name of the disk file that would be executed if name were
specified as a command name, or nothing if ``type -t name'' would not return file.
The -P option forces a PATH search for each name, even if ``type -t name'' would
not return file. If a command is hashed, -p and -P print the hashed value, which
is not necessarily the file that appears first in PATH. If the -a option is used,
type prints all of the places that contain an executable named name. This includes
aliases and functions, if and only if the -p option is not also used. The table of
hashed commands is not consulted when using -a. The -f option suppresses shell
function lookup, as with the command builtin. type returns true if all of the ar-
guments are found, false if any are not found.
[...]
Help output
type --help
type: type [-afptP] név [név ...]
Tájékoztatás egy parancs típusáról.
Minden NÉV esetén kiírja, hogy hogy lenne értelmezve parancsnévként.
Kapcsolók:
-a minden NÉVRE illeszkedő futtatható parancs felsorolása,
beleértve az aliasokat, beépített parancsokat, és a
függvényeket (ha „-p” nem tiltja)
-f függvényeket ne keressen
-P csak a PATH-ban keresse a NEVET, akkor is, ha van ilyen nevű
alias, parancs vagy függvény
-p a végrehajtható fájl nevét írja ki, ha amely végrehajtódna
a parancs kiadásakor. Ha ez nem fájl lenne, nem ír ki semmit
-t egyetlen szót ír ki, amely NÉV típusát jelzi: „alias”,
„keyword” (kulcsszó), „function” (függvény), „builtin”
(beépített parancs), „file” (fájl) vagy „” (nem található)
Kapcsolók:
NÉV Értelmezendő parancsnév.
Kilépési kód:
Sikerrel lép ki, ha minden NÉV megtalálható, sikertelenül, ha nem.
Related Content
- 50 views