/etc/profile.d
NameSizeModeActions
bash_completion.sh6640644editdlrm
bash_timestamps.sh690644editdlrm
colorgrep.csh1960644editdlrm
colorgrep.sh2010644editdlrm
colorls.csh17410644editdlrm
colorls.sh16060644editdlrm
colorsysstat.csh690644editdlrm
colorsysstat.sh560644editdlrm
colorxzgrep.csh1620644editdlrm
colorxzgrep.sh1830644editdlrm
colorzgrep.csh2160644editdlrm
colorzgrep.sh2200644editdlrm
cpanel-user-commands.sh3580644editdlrm
csh.local800644editdlrm
debuginfod.csh6740644editdlrm
debuginfod.sh5960644editdlrm
dedrads.sh850644editdlrm
gawk.csh11070644editdlrm
gawk.sh7570644editdlrm
imh-sys-snap.sh940644editdlrm
lang.csh24890644editdlrm
lang.sh23120644editdlrm
less.csh5000644editdlrm
less.sh2530644editdlrm
locallib.csh2400755editdlrm
locallib.sh2720755editdlrm
modules.csh1050644editdlrm
modules.sh4480644editdlrm
rads-autocomplete.sh85590644editdlrm
scl-init.csh2840644editdlrm
scl-init.sh6370644editdlrm
sh.local810644editdlrm
vim.csh1060644editdlrm
vim.sh2480644editdlrm
which2.csh1200644editdlrm
which2.sh6280644editdlrm
wp-cli-include.sh580644editdlrm
wp3.sh30120644editdlrm
Edit: /etc/profile.d/bash_completion.sh (664B)
# Check for interactive bash and that we haven't already been sourced. if [ -n "${BASH_VERSION-}" -a -n "${PS1-}" -a -z "${BASH_COMPLETION_VERSINFO-}" ]; then # Check for recent enough version of bash. if [ ${BASH_VERSINFO[0]} -gt 4 ] || \ [ ${BASH_VERSINFO[0]} -eq 4 -a ${BASH_VERSINFO[1]} -ge 1 ]; then [ -r "${XDG_CONFIG_HOME:-$HOME/.config}/bash_completion" ] && \ . "${XDG_CONFIG_HOME:-$HOME/.config}/bash_completion" if shopt -q progcomp && [ -r /usr/share/bash-completion/bash_completion ]; then # Source completion code. . /usr/share/bash-completion/bash_completion fi fi fi