summaryrefslogtreecommitdiff
path: root/status.sh
diff options
context:
space:
mode:
Diffstat (limited to 'status.sh')
-rwxr-xr-xstatus.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/status.sh b/status.sh
new file mode 100755
index 0000000..8eae367
--- /dev/null
+++ b/status.sh
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+shopt -s nullglob
+for svc in ~/s6/service/*; do
+ echo -n "$(basename $svc): "
+ s6-svstat $svc
+done