2016-05-08 16:01:57 +08:00
|
|
|
# rmmod completion
|
2020-04-18 16:26:05 +08:00
|
|
|
complete -c rmmod -x -a "(lsmod | string replace -r '\s.*' '')"
|
2016-05-08 16:01:57 +08:00
|
|
|
|
2020-04-18 16:26:05 +08:00
|
|
|
complete -c rmmod -s h -l help -d "Prints the help text"
|
|
|
|
complete -c rmmod -s s -l syslog -d "Send errors to syslog instead of standard error"
|
|
|
|
complete -c rmmod -s v -l verbose -d "Print messages about what the program is doing"
|
2016-05-08 16:01:57 +08:00
|
|
|
complete -c rmmod -s V -l version -d "Show version of program and exit"
|
2024-02-17 16:41:29 +08:00
|
|
|
complete -c rmmod -s f -l force -d "remove being used, unsafe or not-for-removal modules"
|