Rename / Renaming Multiple Files Script

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 -------------------------#

  • Release Date - 06-04-2010
  • Get free version without ©copyright link for just $10/-
  • For customization of this script or any script development, mail to support@hscripts.com

Usage

  • Copy the above code and save it with .sh extension
  • Execute the sh file in command line for renaming multiple files.
  • Execute the renamer shell script as sh filename.sh.
  • Give the foldername and filename.
  • Now all files are renamed under the specific folder.

License

Other Scripts


Ask Questions

Ask Question