🇳🇦🇲🇪♯➤ beluga.o2switch.net 🇻♯➤ 4.18.0-553.123.2.lve.el8.x86_64 #1 SMP 🇾♯➤ 2026
𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 185.154.139.77 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.77
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /etc/bash_completion.d//scl
# main function bound to scl command
_scl()
{
local cur actions cur_action collections
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
actions="enable run load unload list-collections list-packages man register deregister --help"
collections=`scl list-collections`
# Complete action names
if ((COMP_CWORD == 1)); then
COMPREPLY=( $(compgen -W "${actions}" -- ${cur}) )
return 0;
fi
# If there is command or separator in arguments then stop completition
if ((COMP_CWORD > 3)); then
for word in "${COMP_WORDS[@]}"; do
if [[ ${word} == \'* || ${word} == \"* || ${word} == "--" ]] ; then
return 0
fi
done
fi
# Complete one or none action argument
if ((COMP_CWORD >= 2)); then
cur_action="${COMP_WORDS[1]}"
case "$cur_action" in
# No argument
list-collections|list-enabled|--help)
return 0
;;
# Argument is collection name
list-packages|man)
if ((COMP_CWORD == 2)); then
COMPREPLY=( $(compgen -W "$collections" -- ${cur}) )
fi
return 0
;;
# Argument is collection name or "-f" or "--force"
deregister)
if ((COMP_CWORD == 2)); then
COMPREPLY=( $(compgen -W "$collections --force -f" -- ${cur}))
fi
if [ "$COMP_CWORD" -eq 3 -a "(" "${COMP_WORDS[2]}" == "--force" -o "${COMP_WORDS[2]}" == "-f" ")" ]; then
COMPREPLY=( $(compgen -W "$collections" -- ${cur}))
fi
return 0
;;
# Argument is directory
register)
compopt -o plusdirs
if ((COMP_CWORD == 2)); then
COMPREPLY=( $(compgen -A directory -- ${cur}) )
fi
return 0
;;
# Arguments are collections or "-x" or "--exec"
run|enable)
if ((COMP_CWORD == 2)); then
COMPREPLY=( $(compgen -W "$collections -x --exec" -- ${cur}) )
else
COMPREPLY=( $(compgen -W "$collections" -- ${cur}) )
fi
return 0
;;
# Arguments are collections
load|unload)
COMPREPLY=( $(compgen -W "$collections" -- ${cur}) )
return 0
;;
*)
;;
esac
fi
}
# bind the scl command to the _scl function for completion
complete -F _scl scl
| 𝗡𝗔𝗠𝗘 |
𝗦𝗜𝗭𝗘 |
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛 |
𝗨𝗦𝗘𝗥 |
𝗦𝗧𝗔𝗧𝗨𝗦 |
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦 |
| .. | -- | 15 Sep 2026 4.05 AM | root / root | 0755 | |
| | | | | |
| scl | 2.61 KB | 25 Aug 2017 8.23 AM | root / root | 0644 | |