Rename bulk files

Raj

I need to rename the '*.mp3' songs but I don't know how to change name for each and every song in a directory. Does anyone know how to do it?

I need to rename my .mp3 files like this:

Aaaa.mp3
Aaab.mp3
Aaac.mp3
Aaad.mp3
...
Aaaz.mp3
Baaa.mp3
Baab.mp3
...
...
Zzzz.mp3

I know how to change the name for a single file. But, not prefer to change each name manually.

αғsнιη

first generate the filename template and store them in array mode, then travers on .mp3 files and rename them with the name read from the array:

arr_name=( $(printf '%s\n' {A..Z}{a..z}{a..z}{a..z}) )
i=0; for file in ./*.mp3; do echo mv "$file" "${arr_name[i++]}.mp3"; done
unset arr_name  #unset array after all

mv ./files1.mp3 Aaaa.mp3
mv ./files2.mp3 Aaab.mp3
mv ./files3.mp3 Aaac.mp3
…

remove echo in front of the mv command to get ride of the dry-run to perform rename on files.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Bulk rename files with numbering

From Dev

Bulk rename files ascending in number

From Dev

Bulk rename files - remove space

From Dev

Rename files with unreadable filenames in bulk

From Dev

bulk rename (or correctly display) files with special characters

From Dev

bulk rename (or correctly display) files with special characters

From Dev

How to rename files in bulk from command line?

From Dev

Bulk copy and rename files by replacing a pattern

From Dev

(perl) Rename bulk files - moving section starting with #{NUMBER} to front

From Dev

Bulk/Batch-rename files with different endings (NOT change the endings)

From Dev

(perl) Rename bulk files - moving section starting with #{NUMBER} to front

From Dev

How to bulk rename files by cutting starting at a certain character

From Dev

Bulk/Batch-rename files with different endings (NOT change the endings)

From Dev

How to bulk rename files numerically, in order of modification date?

From Dev

How to rename bulk of jpg files to png using convert

From Dev

Bulk copy files from CD, and rename disallowed filenames along the way

From Dev

How can I bulk rename files taking into account some weights?

From Dev

How can I bulk rename files in a photo folder with sequential numbers

From Dev

Bulk rename (append) CSV files based on a value within

From Dev

How to bulk-rename files with invalid encoding or bulk-replace invalid encoded characters?

From Dev

Bulk Rename Utility

From Dev

FTP bulk download and rename

From Dev

Bulk rename .jpeg to .jpg

From Dev

Bulk rename, change prefix

From Dev

Bulk File Rename and Move

From Dev

Bulk file rename

From Dev

linux rename files in bulk using bash script or command line one liner

From Dev

Bulk rename Excel 2010 files based on each file's B4 cell content

From Dev

How to bulk rename audio files so that the file name matches the title metadata (preferably using Foobar2000)?

Related Related

  1. 1

    Bulk rename files with numbering

  2. 2

    Bulk rename files ascending in number

  3. 3

    Bulk rename files - remove space

  4. 4

    Rename files with unreadable filenames in bulk

  5. 5

    bulk rename (or correctly display) files with special characters

  6. 6

    bulk rename (or correctly display) files with special characters

  7. 7

    How to rename files in bulk from command line?

  8. 8

    Bulk copy and rename files by replacing a pattern

  9. 9

    (perl) Rename bulk files - moving section starting with #{NUMBER} to front

  10. 10

    Bulk/Batch-rename files with different endings (NOT change the endings)

  11. 11

    (perl) Rename bulk files - moving section starting with #{NUMBER} to front

  12. 12

    How to bulk rename files by cutting starting at a certain character

  13. 13

    Bulk/Batch-rename files with different endings (NOT change the endings)

  14. 14

    How to bulk rename files numerically, in order of modification date?

  15. 15

    How to rename bulk of jpg files to png using convert

  16. 16

    Bulk copy files from CD, and rename disallowed filenames along the way

  17. 17

    How can I bulk rename files taking into account some weights?

  18. 18

    How can I bulk rename files in a photo folder with sequential numbers

  19. 19

    Bulk rename (append) CSV files based on a value within

  20. 20

    How to bulk-rename files with invalid encoding or bulk-replace invalid encoded characters?

  21. 21

    Bulk Rename Utility

  22. 22

    FTP bulk download and rename

  23. 23

    Bulk rename .jpeg to .jpg

  24. 24

    Bulk rename, change prefix

  25. 25

    Bulk File Rename and Move

  26. 26

    Bulk file rename

  27. 27

    linux rename files in bulk using bash script or command line one liner

  28. 28

    Bulk rename Excel 2010 files based on each file's B4 cell content

  29. 29

    How to bulk rename audio files so that the file name matches the title metadata (preferably using Foobar2000)?

HotTag

Archive