Files
stormbot/modules/help/help.sh
2025-10-24 17:14:52 -04:00

6 lines
217 B
Bash
Executable File

#!/usr/bin/env bash
[ -f functions.sh ] && source functions.sh
output="$1: The modules I have are:"
output="$output $(find modules/ -type d | sort -d | tr '[:space:]' ' ' | sed -e 's#modules/##g')"
msg "$2" "$output"