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