/etc/profile.d
NameSizeModeActions
alt_mod_passenger.sh550644editdlrm
bash_completion.sh7260644editdlrm
colorgrep.csh1960644editdlrm
colorgrep.sh2010644editdlrm
colorls.csh15860644editdlrm
colorls.sh14310644editdlrm
colorsysstat.csh690644editdlrm
colorsysstat.sh560644editdlrm
colorxzgrep.csh1620644editdlrm
colorxzgrep.sh1830644editdlrm
colorzgrep.csh2160644editdlrm
colorzgrep.sh2200644editdlrm
crontab.sh1750644editdlrm
csh.local800644editdlrm
debuginfod.csh9620644editdlrm
debuginfod.sh9230644editdlrm
flatpak.sh8310644editdlrm
gawk.csh11070644editdlrm
gawk.sh7570644editdlrm
golang.sh1380644editdlrm
lang.csh34240644editdlrm
lang.sh31870644editdlrm
less.csh5000644editdlrm
less.sh2530644editdlrm
mc.csh490644editdlrm
mc.sh1530644editdlrm
modules.csh1090644editdlrm
modules.sh4790644editdlrm
scl-init.csh2840644editdlrm
scl-init.sh6370644editdlrm
sh.local810644editdlrm
which2.csh1200644editdlrm
which2.sh6270644editdlrm
Edit: /etc/profile.d/bash_completion.sh (726B)
# shellcheck shell=sh disable=SC1091,SC2039,SC2166 # Check for interactive bash and that we haven't already been sourced. if [ "x${BASH_VERSION-}" != x -a "x${PS1-}" != x -a "x${BASH_COMPLETION_VERSINFO-}" = x ]; then # Check for recent enough version of bash. if [ "${BASH_VERSINFO[0]}" -gt 4 ] || [ "${BASH_VERSINFO[0]}" -eq 4 -a "${BASH_VERSINFO[1]}" -ge 2 ]; 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