How would you organize the following task:
I need to automatically make lets say 50 accounts on lets say 100 sites. So i need to make 5000 accounts on all sites. I have 100 templates files.
Is there a way to make all templates loop together? The code above is a rough explanation only.
For i = 1 to 40
input_patch = usernamesfiles_(i).txt
do all templates
end
Obviously I intend to make separates files that contains usernames and other data, for each loop. For example, if I was 40 then i would use file usernamesfiles_40.txt.
If not is the only way to do such job, actually looping through the first template 40 times, the through second one and so on?
Thanks very much.
I need to automatically make lets say 50 accounts on lets say 100 sites. So i need to make 5000 accounts on all sites. I have 100 templates files.
Is there a way to make all templates loop together? The code above is a rough explanation only.
For i = 1 to 40
input_patch = usernamesfiles_(i).txt
do all templates
end
Obviously I intend to make separates files that contains usernames and other data, for each loop. For example, if I was 40 then i would use file usernamesfiles_40.txt.
If not is the only way to do such job, actually looping through the first template 40 times, the through second one and so on?
Thanks very much.

...and im sure you dont wanna have that.