#!/bin/bash

if [ -z "$1" ] ; then
   echo "usage: $0 <filename>"
   exit 1
fi

while /bin/true ; do  touch "$1" ; done
