I have the following function in my bash script:
make() { cd Python-3.2 make }
When make is called within this script, this functio
Use the full path to the program. E.g. /usr/bin/make.
/usr/bin/make
If you don't know the full path, you can use the which utility, like:
which
$(which make)
That will find the full path and execute make.
make