5 lines
97 B
Bash
Executable file
5 lines
97 B
Bash
Executable file
#!/usr/bin/env sh
|
|
cd /run/runit/service || exit
|
|
for service in *; do
|
|
sv status "$service"
|
|
done
|