#!/bin/bash count="0" max="2600" while [ $count != $max ]; do count=`expr $count + 1` cp SLES_10_X86_CD1.ISO SLES_10_X86_CD1.ISO.$count done exit 0