जैसा कि अन्य ने हैश का उल्लेख किया है एक साहचर्य सरणी (कुंजी -> मान) है जो बैश रखता है ताकि जब एक कमांड निष्पादित हो जाए, तो बैश इस हैश को पहले खोजता है कि क्या डिस्क पर कमांड का स्थान पहले से ही पाया गया है $PATH
, और वहां संग्रहीत है। जल्दी खोज के लिए।
आप हैश को उन आदेशों की एक सूची देकर प्रीलोड कर सकते हैं, जो आप चाहते हैं कि बैश होने पर उसे ढूंढा जाए। यह चर कहलाता है BASH_CMDS
।
मैन पेज से अंश
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.
इसके अतिरिक्त यदि आप बैश मैन पेज को देखते हैं, तो एक खंड है, COMMAND EXECUTION जिसमें स्टेट मशीन का विवरण है, जो कमांड में प्रॉम्प्ट पर टाइप किए जाने पर बैश का उपयोग करता है।
अंश
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.
आप -l
स्विच का उपयोग करके पता लगा सकते हैं कि वर्तमान में आपके हैश में क्या है ।
उदाहरण
$ 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