mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
rmmod: fix examples (#7879)
This commit is contained in:
parent
00e01e07ac
commit
fada0e54ce
1 changed files with 5 additions and 5 deletions
|
@ -5,20 +5,20 @@
|
|||
|
||||
- Remove a module from the kernel:
|
||||
|
||||
`sudo rmmob {{module_name}}`
|
||||
`sudo rmmod {{module_name}}`
|
||||
|
||||
- Remove a module from the kernel and display verbose information:
|
||||
|
||||
`sudo rmmob --verbose {{module_name}}`
|
||||
`sudo rmmod --verbose {{module_name}}`
|
||||
|
||||
- Remove a module from the kernel and send errors to syslog instead of standard error:
|
||||
|
||||
`sudo rmmob --syslog {{module_name}}`
|
||||
`sudo rmmod --syslog {{module_name}}`
|
||||
|
||||
- Display help:
|
||||
|
||||
`rmmob --help`
|
||||
`rmmod --help`
|
||||
|
||||
- Display version:
|
||||
|
||||
`rmmob --version`
|
||||
`rmmod --version`
|
||||
|
|
Loading…
Add table
Reference in a new issue