Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6197511
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T03:50:04+00:00 2026-05-24T03:50:04+00:00

I have multiple files in a directory, example: linux_file1.mp4 , linux_file2.mp4 and so on.

  • 0

I have multiple files in a directory, example: linux_file1.mp4, linux_file2.mp4 and so on. How do I move these files, using shell, so that the names are file1.mp4, file2.mp4 and so on. I have about 30 files that I want to move to the new name.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T03:50:04+00:00Added an answer on May 24, 2026 at 3:50 am

    I like mmv for this kind of thing

    mmv 'linux_*' '#1'
    

    But you can also use rename. Be aware that there are commonly two rename commands with very different syntax. One is written in Perl, the other is distributed with util-linux, so I distinguish them as “perl rename” and “util rename” below.

    With Perl rename:

    rename 's/^linux_//' linux_*.mp4
    

    As cweiske correctly pointed out.

    With util rename:

    rename linux_ '' linux_*.mp4
    

    How can you tell which rename you have? Try running rename -V; if your version is util rename it will print the version number and if it is perl rename it will harmlessly report and unknown option and show usage.

    If you don’t have either rename or mmv and don’t want to or can’t install them you can still accomplish this with plain old shell code:

    for file in linux_*.mp4 ; do mv "$file" "${file#linux_}" ; done
    

    This syntax will work with any POSIX sh conforming to XPG4 or later, which is essentially all shells these days.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We have multiple config files (app.DEV.config, app.TEST.config, etc) and a pre-build event that copies
I have multiple (8) WAR files and 1 EAR file that I want to
I have multiple audio files in the assets directory of my application. When the
Can I have multiple .svc files in one virtual directory under IIS in WCF?
I'm trying to copy multiple files from a deep source tree that have the
I have multiple, separate leiningen projects that ostensibly could depend on one-another. Example: ~/projects/mywebapp
I have multiple files in a folder and each of them have one email
If I have multiple files marked, how do I find/visit all those marked files
I would like to have multiple files in a folder with are managed by
I have multiple excel files which I open as datatable I want to merge

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.