Let´s say I´m in a directory in ~/Code/proj and there is a binary called proj that I compiled via GCC and the way I can run this program is:
~/Code/proj $ ./proj
How do I push the proj directory to $PATH so from now on all binaries in this directory can be called without the ./ prefix?
export PATH="$PATH:$(pwd)"ie, append your current directory (NOT
.!) toPATH.