1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 17:42:07 +02:00
tldr/pages/sunos/svcs.md
2021-03-31 08:09:14 -03:00

24 lines
378 B
Markdown

# svcs
> List information about running services.
> More information: <https://www.unix.com/man-page/linux/1/svcs>.
- List all running services:
`svcs`
- List services that are not running:
`svcs -vx`
- List information about a service:
`svcs apache`
- Show location of service log file:
`svcs -L apache`
- Display end of a service log file:
`tail $(svcs -L apache)`