Do this: ```bash case :$PATH: in *:/some/bin:*) : ;; *) PATH=/some/bin:$PATH ;; esac ``` and you'll ensure that calling the same profile multiple times doesn't pollute $PATH with too many entries.
Do this:
and you'll ensure that calling the same profile multiple times doesn't pollute $PATH with too many entries.