Comme d'autres l'ont mentionné, le hachage est un tableau associatif (clé -> valeur) que Bash maintient afin que lorsqu'une commande est exécutée, Bash le recherche en premier pour voir si l'emplacement de la commande sur le disque a déjà été trouvé via $PATH
, et y est stocké. pour une recherche plus rapide.
Vous pouvez précharger le hachage en donnant une liste des commandes que vous souhaitez que Bash trouve quand il est appelé. Cette variable s'appelle BASH_CMDS
.
extrait de la page de manuel
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.
De plus, si vous consultez la page de manuel Bash, une section intitulée COMMAND EXECUTION détaille la machine à états utilisée par Bash lorsqu’une commande est saisie à l’invite.
extrait
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.
Vous pouvez trouver ce qui se trouve actuellement dans votre hachage en utilisant le -l
commutateur.
Exemple
$ 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
est un shell Bash intégré qui fournit un hachage des commandes.Tout droit de la bouche du cheval:
help hash
info Bash
→ Commandes intégrées à Shell → Bourne Shell à intégrerla source