#!/bin/ksh
#
# Copyright (c) 2000-2001 Silicon Graphics, Inc.  All Rights Reserved.
#

if [[ $# != 2 ]]
then  print -u2 "USAGE: ${0##*/} bindir testdir"
      exit 2
fi

for i in 0 1 2 3 4 5 6 7 8 9
        do
	cp $1/ls_to_copy $2/ls"$i"
	cp $1/ls_to_copy $2/ll"$i"
        done

