Free shell renamer script used for renaming multiple files under the particular folder.
Features
Renaming multiples files on your computer is made easy.
Add or rename file extensions.
Just copy the code and use it in your command line.
Fast and simple renamer shell script.
Downloads
#------------------Script by hscripts.com------------------# #--------------More scripts @www.hscripts.com---------------# #!/bin/bash echo "Enter Folder Name Under which filename is to be renamed:"; read fname //foldername echo "Enter the File Name:"; read name1 //filename without extension cd $fname for x in *.png// Change extension as per your need do n=${x/.png/.png}; mv $x $name1$n; done #------------ Script by hscripts.com -------------------------#