Như những người khác đã đề cập, hàm băm là một mảng kết hợp (khóa -> giá trị) mà Bash duy trì để khi lệnh được thực thi, Bash tìm kiếm hàm băm này trước để xem vị trí của lệnh trên đĩa đã được tìm thấy chưa $PATH
và được lưu trữ ở đó để tìm kiếm nhanh hơn.
Bạn có thể tải trước hàm băm bằng cách đưa ra một danh sách các lệnh mà bạn muốn Bash tìm thấy khi nó được gọi. Biến này được gọi BASH_CMDS
.
đoạn trích từ trang người đàn ông
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.
Ngoài ra, nếu bạn nhìn vào trang man Bash, có một phần có tiêu đề, THỰC HIỆN THÔNG TIN chi tiết máy trạng thái mà Bash sử dụng khi một lệnh được gõ tại dấu nhắc.
đoạn trích
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.
Bạn có thể tìm hiểu những gì hiện tại trong hàm băm của bạn bằng cách sử dụng công -l
tắc.
Thí dụ
$ 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