#!/bin/sh

set  \
"spline s" \
"spline s -q" \
"spline s -q -t 50" \
"spline s -q -t .003" \
"spline s -q -n 30" \
"spline s -c -q" \
"spline s -yl -q" \
"spline s -b -q" \
"spline s -b -q -s n n" \
"spline s -b -q -s -1 1" \
"spline s -b -i i" \
"spline s -b -ix i" \
"spline s -b -iy i" \
"spline s3 -q -3" \
"spline s3 -q -zl" \
"spline s3 -ix i -3" \
"spline s3 -iy i -3" \
"spline s3 -iz i"

check=0

while [ "$#" -gt 0 ]
do
   check=`expr $check + 1`
   ok="ok/ss"`echo 0$check | sed 's/.*\(..\)$/\1/'`
   echo $1
   $1 | sed 1d > _out
   sed -e 1d  -e 's/^;/#/' $ok > _check
   if diff -u  _out _check
   then
     rm -f _out _check
   else
     :
#     break
   fi
   shift
done
