![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /proc/self/root/usr/share/bash-completion/completions/ |
# Linux modinfo(8) completion -*- shell-script -*- _modinfo() { local cur prev words cword _init_completion || return case "$prev" in -F|--field) COMPREPLY=( $( compgen -W 'alias author depends description filename firmware license parm srcversion staging vermagic version' -- "${cur,,}" ) ) return ;; -k) _kernel_versions return ;; esac if [[ "$cur" == -* ]]; then COMPREPLY=( $( compgen -W '-V --version -F --field -k -0 --null -a -d -l -p -n' -- "$cur" ) ) return fi local i version=$(uname -r) for (( i=${#words[@]}-1; i>0; i-- )); do if [[ ${words[i]} == -k ]]; then version=${words[i+1]} break fi done # do filename completion if we're giving a path to a module if [[ "$cur" == @(*/|[.~])* ]]; then _filedir '@(?(k)o?(.gz))' else _modules $version fi } && complete -F _modinfo modinfo # ex: filetype=sh