Megatest

testlock.sh at tip
Login

File testlocking/testlock.sh from the latest check-in


#!/bin/bash

HRS=$(date +%H)
MINS=$(($(date +%M) + 1))
if [[ $MINS -lt 10 ]];then
  MINS="0${MINS}"
fi
THETIME="$HRS:$MINS"
echo "THETIME=$THETIME"
for x in a b c d e f g h i j;do
   echo "megatest -load justtest.scm > $x.log" | at $THETIME
done