5 lines
197 B
Bash
Executable File
5 lines
197 B
Bash
Executable File
[ -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"
|