Wie andere bereits erwähnt haben, handelt es sich bei dem Hash um ein assoziatives Array (Schlüssel -> Wert), das von Bash verwaltet wird. Wenn ein Befehl ausgeführt wird, durchsucht Bash diesen Hash zuerst, um festzustellen $PATH
, ob der Speicherort des Befehls auf der Festplatte bereits über gefunden und dort gespeichert wurde für eine schnellere Suche.
Sie können den Hash vorab laden, indem Sie eine Liste von Befehlen angeben, nach denen Bash beim Aufrufen suchen soll. Diese Variable wird aufgerufen BASH_CMDS
.
Auszug aus der Manpage
BASH_CMDS
An associative array variable whose members correspond to the
internal hash table of commands as maintained by the hash builtin.
Elements added to this array appear in the hash table; unsetting
array elements cause commands to be removed from the hash table.
Wenn Sie sich die Bash- Manpage ansehen, gibt es außerdem einen Abschnitt mit dem Titel COMMAND EXECUTION, in dem die Zustandsmaschine aufgeführt ist, die Bash verwendet, wenn ein Befehl an der Eingabeaufforderung eingegeben wird.
Auszug
If the name is neither a shell function nor a builtin, and contains no
slashes, bash searches each element of the PATH for a directory con‐
taining an executable file by that name. Bash uses a hash table to
remember the full pathnames of executable files (see hash under SHELL
BUILTIN COMMANDS below). A full search of the directories in PATH is
performed only if the command is not found in the hash table. If the
search is unsuccessful, the shell searches for a defined shell function
named command_not_found_handle. If that function exists, it is
invoked with the original command and the original command's arguments
as its arguments, and the function's exit status becomes the exit
status of the shell. If that function is not defined, the shell prints
an error message and returns an exit status of 127.
Mit dem -l
Schalter können Sie herausfinden, was sich aktuell in Ihrem Hash befindet .
Beispiel
$ hash -l
builtin hash -p /usr/bin/rm rm
builtin hash -p /usr/bin/sudo sudo
builtin hash -p /usr/bin/man man
builtin hash -p /usr/bin/ls ls
hash
ist eine eingebaute Bash-Shell, die Hashing für Befehle bereitstellt.Direkt aus dem Maul des Pferdes:
help hash
info Bash
→ Shell Builtin-Befehle → Bourne Shell Builtinsquelle