13.12.13

How to Rename multiple files and folders.


Many a time we need to rename multiple files at once. So, here is the trick to re-name files and folders.

If you are Using windows OS then it’s very simple to do so. Just select multiple files and press "F2" keyboard button it will rename all the selected files in a sequential order.

If you are using Unix/Linux OS such as Ubuntu then use the below command:

Man@Laptop:~$ for i in *.JPEG; do echo $i; done
a.JPEG
b.JPEG
c.JPEG
d.JPEG
The above command will rename all JPEG images in sequence of alphabetical order.
So, Happy Doing.

No comments:

Post a Comment