1#!/bin/sh 2echo "v4test starting:" 3for t in $(find -maxdepth 1 -type f \! -name test\*_v6 -name test\*); do 4 echo "$t"; 5 if $t; then 6 echo "PASS: $t"; echo ""; 7 else 8 echo "FAIL: $t"; echo ""; 9 fi 10 sleep 1; 11done 12