#!/bin/sh
# Copyright © 2008 Bart Massey
# ALL RIGHTS RESERVED
# [This program is licensed under the "3-clause ('new') BSD License"]
# Please see the file COPYING in the source
# distribution of this software for license terms.
for i in `seq 20000000 5000000 80000000`
do
  echo -n "$i "
  /usr/bin/time -f '%U' ./$1 $i 2>&1 1>/dev/null
done
