Forgotten this one.

This commit is contained in:
Jean-Paul Chaput 2012-05-03 11:21:34 +00:00
parent e78efc0fee
commit 487a1d6adc
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
#!/bin/sh
run=0
while [ $run -lt 3 ]; do
echo ""
echo ""
echo ""
echo ""
echo "=================================================================="
echo "Run: $run (in 4s)"
echo ""
sleep 4
make clean && make
run=`expr $run + 1`
done