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.
|
|
I like mmv for this kind of thing
But you can also use With Perl rename:
As cweiske correctly pointed out. With util rename:
How can you tell which rename you have? Try running If you don't have either
This syntax will work with any POSIX sh conforming to XPG4 or later, which is essentially all shells these days. |
||||
|
|
|
I do like the answer by cweiske, except it only works with direct coding. I am looking for something scriptable. I need to rename a set of files exactly like this, but the script determines the file common prefix, "linux_". When I add a variable I get this error:
I ended up using the longer method above:
Thanks for this posting, solved my issue - not as pretty as I hoped, but works. |
||||
|