1
I would like to know how a bash code is made to rename all files of a certain extension and folders that start with a special name. The repository I want to make the changes to:
https://github.com/gnramos/CIC-APC
for example:
1.in -> 01.in 1.out -> 01.out
3_Fluxe -> 03_Fluxe 4_Subalgoritmos -> 04_Subalgoritmos
It’s just these 3 cases, files with extension . in, . out, and folders and start with a number less than 10, if not less than 10, 0 does not need to be added.
In your case, the 1.in file would have the new name of 01.in ?
– Roknauta