13 lines
193 B
Bash
Executable File
13 lines
193 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source "$(dirname $0)/../lib/lib.bash"
|
|
|
|
family=$1
|
|
shift
|
|
|
|
modules=$(egrep -l "[:space:]*[\"\']$family[\"\']" "$(dirname $0)"/*.build || :)
|
|
|
|
for m in ${modules}; do
|
|
"$m" "$@"
|
|
done
|