They are equivalent in bash in that they do exactly the same thing. On the other hand, source
is 5 characters longer and is not portable to POSIX-only shells or Bourne whereas .
(dot) is, so I never bother using source
.
That is correct - sourcing a file runs the commands in the current shell and it will affect your current shell environment. You can still pass arguments to the sourced file and bash will actually look in $PATH
for the file name just like a normal command if it doesn't contain any slashes.
Not related to the original question of .
vs source
, but in your example,
. ./myScript.sh
is not identical to
source myScript.sh
because while .
and source
are functionally identical, myScript.sh
and ./myScript.sh
are not the same. Since ./myScript.sh
contains a slash, it's interpreted as a path and the shell just uses ./myScript.sh
. However, myScript.sh
does not have a slash so the shell does a $PATH
search for it first. This is the POSIX specified standard behavior for .
. Most shells default to this although they may add extensions (such as searching in the current working directory after the path search) or options to change the behavior of .
/source
.
man .
,man source
or whatever I haven't know yet. – Tim Aug 1 '11 at 18:39type .
andhelp .
– rozcietrzewiacz Aug 1 '11 at 18:43man $SHELL
,/source
– alex Aug 1 '11 at 20:42