command
ist ein bash builtin wie wir sehen können:
seth@host:~$ type command
command is a shell builtin
Wir wissen command
also, dass unsere Shell, bash , für uns sorgt. Wenn man bash
wir uns vertiefen , können wir sehen, wozu es dient:
(von man bash
):
command [-pVv] command [arg ...]
Run command with args suppressing the normal shell function
lookup. Only builtin commands or commands found in the PATH are
executed. If the -p option is given, the search for command is
performed using a default value for PATH that is guaranteed to
find all of the standard utilities. If either the -V or -v
option is supplied, a description of command is printed. The -v
option causes a single word indicating the command or file name
used to invoke command to be displayed; the -V option produces a
more verbose description. If the -V or -v option is supplied,
the exit status is 0 if command was found, and 1 if not. If
neither option is supplied and an error occurred or command
cannot be found, the exit status is 127. Otherwise, the exit
status of the command builtin is the exit status of command.
Im Wesentlichen würden Sie verwenden command
, um "normale Funktionssuche" zu umgehen. Angenommen, Sie hatten eine Funktion in Ihrem .bashrc
:
function say_hello() {
echo 'Hello!'
}
Normalerweise, wenn Sie laufen say_hello
würde die Funktion mit dem Namen finden in Ihrem Terminal bash say_hello
in Ihrem .bashrc
bevor es gefunden, sagen wir, eine Anwendung mit dem Namen say_hello
. Verwenden von:
command say_hello
Lässt Bash seine normale Funktionssuche umgehen und geht direkt zu Builtins oder Your $PATH
. Beachten Sie, dass diese Funktionssuche auch Aliase enthält. Mit command
werden sowohl Funktionen als auch Aliase umgangen.
Wenn die -p
Option verfügbar ist, umgeht bash Ihre benutzerdefinierten Einstellungen $PATH
und verwendet die eigenen Standardeinstellungen.
Die -v
oder -V
Flags-Bash gibt eine Beschreibung (kurz für -v
, lang für -V
) des Befehls aus.
Hinweis: Wie souravc in den Kommentaren ausgeführt hat, finden Sie hier eine einfachere Methode zum Auffinden von Informationen über Shell-Builtins: Wie kann man für Shell-Builtin-Befehle und -Schlüsselwörter arbeiten?