I've been studying the bash scripting then i noticed using the period wildcard in the bash script, in my sense the period treated as current directory,
I have snippet
if ! shopt -oq posix; then
if [ -f /usr/share/bash-completion/bash_completion ]; then
. /usr/share/bash-completion/bash_completion
elif [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
fi
. /etc/bash_completion In this script what is the use of the (.), period.