mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 15:37:59 +08:00
9 lines
475 B
Fish
9 lines
475 B
Fish
# rmmod completion
|
|
complete -c rmmod -x -a "(lsmod | string replace -r '\s.*' '')"
|
|
|
|
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"
|
|
complete -c rmmod -s V -l version -d "Show version of program and exit"
|
|
complete -c rmmod -s f -l force -d "remove being used, unsafe or not-for-removal modules"
|