In bash, .this is another way to spell source. So this line is the same:
if [ -x /usr/libexec/path_helper ]; then
eval `/usr/libexec/path_helper -s`
fi
if [ "${BASH-no}" != "no" ]; then
[ -r /etc/bashrc ] && source /etc/bashrc
fi
sourceinterprets the file as if the contents were included in the command location source. The difference with doing this is that it can set aliasor define functionor variables.
source
share