In an earlier article titled "How to set the PATH variable in Linux" we discussed placing executable scripts in your PATH. This makes it convenient to invoke them by name only, instead of full path (i.e. myscript.sh instead of /path/to/myscript.sh). Searching PATH can become cumbersome if you have a lot of directories and executables. The bash shell keeps a hash table for all the commands run in your current shell. It uses this table to quickly look up the full path of an executable without searching PATH. In this article we will discuss how to manipulate this table using the bash builtin hash command.
Bash searches each element of
-Bash Manual$PATH
for a directory containing an executable file by that name. Bash uses a hash table to remember the full pathnames of executable files to avoid multiplePATH
searches. A full search of the directories in$PATH
is performed only if the command is not found in the hash table.
Listing Your Bash Hash Table
You can display the hash table for the current shell by invoking hash without any arguments. In this view the hash outputs the number of hits (calls for that command) and the command with it's path.
You can think of the sum of all hits as the number of saved searches through $PATH.
Use the -l option to display the hash table in a format that is usable as input.
You can also print the remembered location of a specific name by using the -t option.
[savona@putor ~]$ hash -t putorius /home/savona/.local/bin/putorius
Optionally, you can provide several names separated by spaces.
[savona@putor ~]$ hash -t putorius chmod putorius /home/savona/.local/bin/putorius chmod /usr/bin/chmod
Adding a Command Path and Name to the Hash Table
This is where the hash command becomes interesting. You can add items to the hash table to be reused in the shell. It is important to note that the hash table only exists in the current shell. If you open a new shell, bash creates a new hash table.
[savona@putor ~]$ hash hash: hash table empty
As soon as you run your first command bash starts to generate the hash table.
[savona@putor ~]$ mkdir /tmp/test [savona@putor ~]$ hash hits command 1 /usr/bin/mkdir
You can manually add a command to the hash table using the -p option followed by the path and then the name. In this manner the hash table can be used similar to an alias. In the example below we add the /tmp/test/hello-world.sh script to the hash table with the name hello.
[savona@putor ~]$ hash -p /tmp/test/hello-world.sh hello [savona@putor ~]$ hash -l builtin hash -p /usr/bin/which which builtin hash -p /usr/bin/mkdir mkdir builtin hash -p /usr/bin/chmod chmod builtin hash -p /tmp/test/hello-world.sh hello builtin hash -p /usr/bin/vim vim
Now that the name hello is mapped to the /tmp/test/hello-world.sh script in the hash table, we can invoke it by name only.
[savona@putor ~]$ hello Hello World!
Bash checks the hash table for the name to find the executable. There is no need to put the script in your PATH, unless you want it to be available in all new shells.
Deleting an Item from the Hash Table
You can delete or "forget" a remembered location of a command by using the -d option followed by the name.
[savona@putor ~]$ hash -l builtin hash -p /usr/bin/which which builtin hash -p /tmp/test/hello-world.sh hello [savona@putor ~]$ hash -d hello [savona@putor ~]$ hash -l builtin hash -p /usr/bin/which which
Clearing the Hash Table
You can also clear the hash table completely by using the -r option.
[savona@putor ~]$ hash hits command 2 /usr/bin/which 1 /var/tmp/go 2 /usr/bin/chmod 1 /usr/bin/neofetch 1 /usr/bin/vim 3 /home/savona/.local/bin/putorius 2 /usr/bin/clear 2 /usr/bin/logger 1 /usr/bin/rm [savona@putor ~]$ hash -r [savona@putor ~]$ hash hash: hash table empty
Conclusion
The hash command is a Bash builtin command that can be used to manipulate the command hash table. In this article we explored listing items in the hash table, adding commands to the hash table and deleting commands from the hash table. We also discussed how we can use the hash table to simulate and alias. The hash table is not something normally used in day to day operations. However, I do know some developers who use it often. As a system administrator it can be a useful tool in certain situations.
Resources and Links
Leave a Reply Cancel reply
This site uses Akismet to reduce spam. Learn how your comment data is processed.
1 Comment
Join Our Newsletter
Categories
- Bash Scripting (17)
- Basic Commands (50)
- Featured (7)
- Just for Fun (5)
- Linux Quick Tips (98)
- Linux Tutorials (65)
- Miscellaneous (15)
- Network Tools (6)
- Reviews (2)
- Security (32)
- Uncategorized (1)
interesting and informative you learn something new every day!