2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-05 12:00:16 +00:00
cheat.sheets/sheets/svcs

18 lines
305 B
Plaintext
Raw Normal View History

2017-06-04 14:30:24 +00:00
# svcs
# List information about running services (Solaris)
# 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)