test_all_fex.sh 152 Bytes
Newer Older
1
2
3
4
5
6
7
#!/bin/sh
FEXFILES=fexfiles.lst
find $1 -name '*.fex' > ${FEXFILES}
while read fex; do
	./fextest.sh ${fex} || exit
done <${FEXFILES}
rm -f ${FEXFILES}