How Linux renames multiple files

Source: Internet
Author: User

The following is the basic syntax for renaming commands.

1 Rename [-v-n-f] <pcre> <files>

<pcre> is a Perl-compatible regular expression that represents the file to be renamed and what to do. The regular expression is in the form of ' s/old-name/new-name/'.

The '-V ' option displays the details of the file name change (for example: XXX renamed to YYY).

The '-n ' option tells the rename command to show that the file will be renamed without actually changing the name. This option is useful in situations where you want to simulate changing the file name without changing the file name.

The '-f ' option enforces overwriting of existing files.

Example: uppercase to lowercase, and vice versa

--------------------------------------------------

Sometimes you want to change the case of the file name, you can use the following command.

Change all files to lowercase:

# rename ' y/a-z/a-z/' *

Change all files to uppercase:

# rename ' y/a-z/a-z/' *

How Linux renames multiple files

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.