10 lines
219 B
Bash
Executable File
10 lines
219 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source "$(dirname $0)/../lib/lib.bash"
|
|
|
|
[[ -z $EM_ETCDIR ]] && die 1 "Module environment not loaded"
|
|
|
|
while read family rest; do
|
|
$(dirname $0)/family.build ${family} "$@"
|
|
done < "${EM_ETCDIR}/family.conf"
|