1 2 3 4 5 6 7 8 9
#!/bin/sh shopt -s nullglob for svc in ~/s6/service/*; do if [ -d $svc ]; then echo -n "$(basename $svc): " s6-svstat $svc fi done