mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-09 12:00:26 +00:00
10 lines
238 B
Bash
Executable File
10 lines
238 B
Bash
Executable File
# Begin /etc/profile.d/bash_completion.sh
|
|
# Import bash completion scripts
|
|
|
|
for script in /etc/bash_completion.d/*.sh ; do
|
|
if [ -r $script ] ; then
|
|
. $script
|
|
fi
|
|
done
|
|
# End /etc/profile.d/bash_completion.sh
|