13 lines
105 B
Bash
Raw Normal View History

2006-09-04 20:04:42 +00:00
#!/bin/sh
for i in *.sh
do
if [ "X$i" = "Xalltests.sh" ]
then
continue;
fi
sh ./$i
done