#!/bin/bash

for (( T = 1; T <= 20; T++ )) 
do
	echo "mainexec config number $T"
	sed "s/CONFIGNUMBER/$T/g" propSEED.ini.xml > prop$T.ini.xml	
done
