6 lines
102 B
Bash
6 lines
102 B
Bash
|
file='/usr/share/bash-completion/bash_completion'
|
||
|
|
||
|
if [ -f "${file}" ] ; then
|
||
|
source "${file}"
|
||
|
fi
|