svchelper/app/bin/list

7 lines
109 B
Plaintext
Raw Permalink Normal View History

2024-04-23 02:34:16 +00:00
#!/usr/bin/env bash
for d in "$APP_SERVICES"/*/; do
if [ -e "$d" ]; then
echo "$(basename "$d")"
fi
done