Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

38
tldr/linux/rc-service Normal file
View File

@@ -0,0 +1,38 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# rc-service
> Locate and run OpenRC services with arguments.
> See also `openrc`.
> More information: <https://manned.org/rc-service>.
- Show a service's status:
`rc-service {{service_name}} status`
- Start a service:
`sudo rc-service {{service_name}} start`
- Stop a service:
`sudo rc-service {{service_name}} stop`
- Restart a service:
`sudo rc-service {{service_name}} restart`
- Simulate running a service's custom command:
`sudo rc-service --dry-run {{service_name}} {{command_name}}`
- Actually run a service's custom command:
`sudo rc-service {{service_name}} {{command_name}}`
- Resolve the location of a service definition on disk:
`sudo rc-service --resolve {{service_name}}`