Bash – How to Rehash Executables in $PATH

bash

The subject says it all, how to rehash the available executables available within one of the $PATHs after having changed things: e.g. removed a binary from one $PATH which is available in another $PATH, changed the $PATH-variable.

Best Answer

hash -r is what needs to be done. In zsh it is rehash and rehash doesn't exist (by default) in bash.

Related Question