$PATH in zsh
I am attempting to get zsh to add the ~/bin directory to my path. I added ~/bin to /etc/paths and it shows up when I echo $PATH in zsh:
echo $PATH
/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:~/bin
Yet, zsh continues to report command not found when I attempt to run a script found in ~/bin.
If I chsh -s /bin/bash, it works without issue.
I ran across some posts suggesting to use ${Home}/bin instead of ~ in zsh but that did not appear to work either.
Any suggestions?
MacBook Pro with Touch Bar