This is a quite simple script I would assume but my bash skills are non-existent.
I have a file named file_name_01.txt and I need to generate a number N of files identical to this one (ie: duplicates) but changing the names so the endings are in ascending order. The resulting files will be named like so:
file_name_02.txt
file_name_03.txt
...
file_name_09.txt
file_name_10.txt
...
file_name_N.txt
How can I generate such a script?