You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
305 B
Plaintext

# 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)