I have the following function in my bash script:
make() {
cd Python-3.2
make
}
When make is called within this script, this function is invoked, which recurses. The call to make
inside the function should actually invoke the external make utility. Other than renaming my make function, what's the cleanest way to achieve this?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…