How can I rename each file in folder:
pattern is: (first part of file name).digit_(endoffilename)
for example
a.1_f
b.2_f
c.3_g
I would like to replace it with
a.01_f
b.02_f
c.03_ g
...
Thanks for help
|
How can I rename each file in folder: pattern is: (first part of file name).digit_(endoffilename) for example
I would like to replace it with
... Thanks for help |
|||
|
|
|
Try this:
Or if you have more than nine files:
The second example uses aliases to shorten the command (easier for typing). |
|||||||||||||||
|
|
One way to do this is to break the file apart via regular expressions, then assemble the new file name from the parts, followed by a
|
|||
|
|