Dedupe your shell paths ======================= If you have ever ran and see duplicate entries it's likely that you have duplicate entries in your $PATH. You can clean this up with a one liner at the end... Date: March 4, 2022 If you have ever ran `which ` and see duplicate entries it's likely that you have duplicate entries in your $PATH. You can clean this up with a one liner at the end of your bashrc or zshrc. ``` bash eval "typeset -U path" ```