/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
completions-fallback/rmmod.bash
25 строк
569 B
Ville Skyttä
chore: remove most editor mode config comments
01 июн 2026, 21:26
01 июн 2026, 21:26
bdeca44
Код
Авторство
О чём код?
# Linux rmmod(8) completion. # This completes on a list of all currently installed kernel modules. # Use of this file is deprecated. # Upstream completion is available in kmod >= 34, use that instead. _comp_cmd_rmmod() { local cur prev words cword comp_args _comp_initialize -- "$@" || return case $prev in -h | --help | -V | --version) return ;; esac if [[ $cur == -* ]]; then _comp_compgen_help return fi _comp_compgen_inserted_kernel_modules } && complete -F _comp_cmd_rmmod rmmod