Suppose I have a program named abc in the search path, and I write a script containing the following:
#!/bin/sh
abc() {
echo Hello
}
$1
Invoking this script with a parameter abc calls the function. Is there a way to always run the external program instead?
OK, this seems to do the job: