#!/bin/sh

i=0
while [ $i -lt 50 ]
do
  ruby pngtest.rb > nul
  i=`expr $i + 1`
done
