/
githubmirror
/
kmod
Обзор
Документация
Войти
/
githubmirror
/
kmod
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
shell-completion/zsh/_insmod
16 строк
756 B
Rong Tao
insmod: Support --force-{vermagic,modversion} arguments
09 май 2025, 17:07
09 май 2025, 17:07
c494150
Код
Авторство
О чём код?
#compdef insmod # insmod(8) completion -*- shell-script -*- # SPDX-License-Identifier: LGPL-2.1-or-later # # SPDX-FileCopyrightText: 2024 Emil Velikov <emil.l.velikov@gmail.com> _arguments \ {-f,--force}'[DANGEROUS: forces a module load, may cause data corruption and crash your machine]' \ --force-modversion'[ignore module version, may cause data corruption and crash your machine]' \ --force-vermagic'[ignore module version magic, may cause data corruption and crash your machine]' \ {-s,--syslog}'[print to syslog, not stderr]' \ {-v,--verbose}'[enables more messages]' \ {-V,--version}'[show version]' \ {-h,--help}'[show this help]' \ '1::module:_files -g "*.ko(|.gz|.xz|.zst)"'