mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 19:38:56 +08:00
6b465a0b05
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
394 B
394 B
hash
View cached executable locations. More information: https://www.gnu.org/software/bash/manual/bash.html#index-hash.
- 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 a command:
hash -t {{command}}
- Display help:
hash --help