diff --git a/pages/common/hash.md b/pages/common/hash.md new file mode 100644 index 000000000..6a0dfcb6d --- /dev/null +++ b/pages/common/hash.md @@ -0,0 +1,20 @@ +# hash + +> View cached executable locations. +> More information: . + +- View cached command locations for the current shell: + +`hash` + +- Clear the hash table: + +`hash -r` + +- Delete a specific command from the hash table: + +`hash -d {{command}}` + +- Print the full path of `command`: + +`hash -t {{command}}`