Shell question



I have a question...

Suppose I have a shell script (say script.sh) in /var/tmp/, what is the
difference between the following commands?

$ cd /var/tmp
$ . script.sh
--------------------------------------------
$ cd /var/tmp
$ . ./script.sh
---------------------------------------------
$ . ./var/tmp/script.sh

Thanks,
Rajiv

.