A question on "exec" command

The following is my bash script
-----------------------
#!/bin/bash
exec myscript "$@"
-----------------------

When invoked, the script "myscript" in the exec command
is using the file "/usr/bin/diff"
But, I want the script "myscript"to use the file "/home/bin/diff"

How can I accomplish it?
Thanks in advance
bsoo

You can do it in several ways.

One of them is to change your $PATH to specify /home/bin first.