Hello,

today i’ll show you how to rename more than one file in linux at (or in?) the commandline.

First install „rename“ with this command:

sudo apt install rename -y

Then use the following command to rename all files in the folder (cd to the right folder)

(! Attention – there’s no security-question or something else !)

rename -f 'y/A-Z/a-z/' *

and then list the files with

ls -la

Thats it

Have fun and a nice day