[email protected]Office hours: Mon – Fri 9:00AM – 5:00PMLinkedInXFacebook
NexonHost
Netherlands Dedicated ServersAmsterdam · Equinix AM6Germany Dedicated ServersFrankfurt · Equinix FR4Romania Dedicated ServersBucharest · VoxilityAustria Dedicated ServersVienna · Interxion VIEBulgaria Dedicated ServersSofia · TelepointFrance Dedicated ServersParis · Interxion PAR — Marseille · Digital Realty MRS3Ireland Dedicated ServersDublin · Equinix DB2Italy Dedicated ServersMilan · Irideos AvalonPoland Dedicated ServersWarsawSpain Dedicated ServersMadrid · Equinix MD2United States Dedicated ServersAshburn · Equinix DC
All articles
Getting startedMarch 21, 2023

How to use Rename command.

How To Use Rename Command.

In this tutorial, we will explain how to use the rename command to batch rename files.

Renaming multiple files and directories with the mv command can be a tedious process as it involves writing complex commands with pipes, loops , and so on.

This is where the rename command comes handy. It renames the given files by replacing the search expression in their name with the specified replacement.

 

Installing rename

There are two versions of the rename command with different syntax and features. We will be using the Perl version of the rename command.

If this version is not installed on your system, use the package manager of your Linux distribution to install it:

  • Ubuntu and Debian
    sudo apt updatesudo apt install rename
  • CentOS and Fedora
    sudo yum install prename
  • Arch Linux
    yay perl-rename

 

Using rename

The following is the general syntax for the rename command:

rename [OPTIONS] perlexpr files

The rename command is basically a Perl script. It will rename the given files according to the specified perlexpr regular expression. You can read about Perl regular expressions here .

For example, the following command will change the extension of all .css files to .scss:

rename 's/.css/.scss/' *.css

Let’s explain the command in more details:

  • s/search_pattern/replacement/ – The substitution operator.
  • .css – The search pattern. It is the first argument in the substitution operator. The rename command will search for this pattern in the given file name and if found it will replace it with the replacement argument.
  • .scss – The replacement. The second argument in the substitution operator.
  • *.css – All files with “.css” extension. Wildcard (*) is a symbol used to represent zero, one or more characters.

Before running the actual command and rename the files and directories it is always a good idea to use the -n option that will perform a “dry run” and show you what files will be renamed:

rename -n 's/.css/.scss/' *.css

The output will look something like this:

rename(file-0.css, file-0.scss)
rename(file-1.css, file-1.scss)
rename(file-2.css, file-2.scss)
rename(file-3.css, file-3.scss)
rename(file-4.css, file-4.scss)

By default, the rename command doesn’t overwrite the existing files. Use the -f option which tells rename to overwrite the existing files:

rename -f 's/.css/.scss/' *.css

If you want rename to print the names of files that are successfully renamed, use the -v (verbose) option:

rename -v 's/.css/.scss/' *.css
file-0.css renamed as file-0.scss
file-1.css renamed as file-1.scss
file-2.css renamed as file-2.scss
file-3.css renamed as file-3.scss
file-4.css renamed as file-4.scss

 

rename Examples

Below are a few common examples of how to use the rename command:

Replace spaces in filenames with underscores

rename 'y/ /_/' *

Convert filenames to lowercase

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

Convert filenames to uppercase

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

Remove .bak from the filenames

rename 's/\.bak$//' *.bak

Rename .jpeg and .JPG filenames to .jpg

rename 's/\.jpe?g$/.jpg/i' *

 

Conclusion

The rename command allows you to rename multiple files at once, using Perl regular expressions.

Keep reading
How to Implement Network Segmentation and Resource Isolation in Linux.
February 6, 2024

How to Implement Network Segmentation and Resource Isolation in Linux.

How to Implement Network Segmentation and Resource Isolation in Linux. Securing and managing networks in a Linux environment involves advanced practices like network segmentation and resource isolation. This guide explores these concepts, providing detailed instructions and examples for…

Read article
How to open or close ports in Linux.
February 6, 2024

How to open or close ports in Linux.

How to open or close ports in Linux. Effectively managing ports on your Linux system is crucial for both security and service accessibility. This comprehensive guide will provide a detailed walkthrough on opening and closing ports using the robust tools iptables and ufw. Understanding these…

Read article
How to use ypdomainname command.
January 23, 2024

How to use ypdomainname command.

How to use ypdomainname command. In the realm of Linux networking, the ypdomainname command plays a crucial role in the context of the Network Information Service (NIS). NIS, formerly known as Yellow Pages, is a distributed database service that facilitates the sharing of network configuration and…

Read article
Get in Touch

Together, Let’s Build a Faster, Safer Internet.

Build scalable infrastructure with NexonHost — high-performance dedicated servers, VPS hosting, colocation, and DDoS protection across Europe.

Get Started →Contact Us
[email protected]Office hours: Mon – Fri 9:00AM – 5:00PM