I have a template file, say "template.txt" containing this text for example :
variable_1 = value_1 ;
variable_2 = value_2 ;
variable_3 = value_3 ;
I want to generate multiple files "file#.txt" (where # is the number of the file), in different directories (a new directory for each new file), by modifying the values in the template file each time (these values will be passed on by another Python script (Pyevolve)).
Is that possible (in Python or any other scripting language) ?
Thank you in advance.