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