12 lines
195 B
Bash
Executable File
12 lines
195 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for i in `ls test` ; do
|
|
echo Running test $i:
|
|
echo ---------------------
|
|
bin/nbfi test/$i
|
|
echo
|
|
echo ---------------------
|
|
echo End of test $i
|
|
echo
|
|
done
|