Files
ports/core/filesystem/bash_completion.sh
2017-11-14 18:04:32 +08:00

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