mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 06:38:27 +08:00
Added completions for rmmod (#3007)
This commit is contained in:
parent
1d101ef3d0
commit
59c8800c4d
8
share/completions/rmmod.fish
Normal file
8
share/completions/rmmod.fish
Normal file
|
@ -0,0 +1,8 @@
|
|||
# rmmod completion
|
||||
complete -c rmmod -x -a "(/sbin/lsmod | awk 'NR > 1 {print \$1}')"
|
||||
|
||||
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 "With this option, you can remove modules which are being used, or which are not designed to be removed, or have been marked as unsafe"
|
Loading…
Reference in New Issue
Block a user