1
0
Fork 0
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:
rooty 2022-03-19 11:28:29 -07:00 committed by GitHub
parent 00e01e07ac
commit fada0e54ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,20 +5,20 @@
- Remove a module from the kernel: - Remove a module from the kernel:
`sudo rmmob {{module_name}}` `sudo rmmod {{module_name}}`
- Remove a module from the kernel and display verbose information: - 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: - 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: - Display help:
`rmmob --help` `rmmod --help`
- Display version: - Display version:
`rmmob --version` `rmmod --version`