13 lines
105 B
Bash
13 lines
105 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
for i in *.sh
|
||
|
do
|
||
|
if [ "X$i" = "Xalltests.sh" ]
|
||
|
then
|
||
|
continue;
|
||
|
fi
|
||
|
sh ./$i
|
||
|
done
|
||
|
|
||
|
|