mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-01 09:15:22 +02:00
systemctl: fix token syntax for multicommand examples (#5274)
This commit is contained in:
parent
70a76e5280
commit
a808abf3db
1 changed files with 3 additions and 3 deletions
|
@ -9,7 +9,7 @@
|
|||
|
||||
- Start/Stop/Restart/Reload a service:
|
||||
|
||||
`systemctl start/stop/restart/reload {{unit}}`
|
||||
`systemctl {{start|stop|restart|reload}} {{unit}}`
|
||||
|
||||
- Show the status of a unit:
|
||||
|
||||
|
@ -17,11 +17,11 @@
|
|||
|
||||
- Enable/Disable a unit to be started on bootup:
|
||||
|
||||
`systemctl enable/disable {{unit}}`
|
||||
`systemctl {{enable|disable}} {{unit}}`
|
||||
|
||||
- Mask/unmask a unit to prevent enablement and manual activation:
|
||||
|
||||
`systemctl mask/unmask {{unit}}`
|
||||
`systemctl {{mask|unmask}} {{unit}}`
|
||||
|
||||
- Reload systemd, scanning for new or changed units:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue