1 #!/bin/sh 2 3 for i in *.sh 4 do 5 if [ "X$i" = "Xalltests.sh" ] 6 then 7 continue; 8 fi 9 sh ./$i 10 done 11 12 13