Forrest logo
back to the find tool

find:ai:ffa1d

How to tag a group of files track number in alphabetical order id3v2
$ find . -name '*.mp3' -execdir id3v2 --TRCK %n {} +
try on your machine

This CLI command will find all .mp3 files in the current directory and its subdirectories, and then tag each file with a track number in alphabetical order using the id3v2 tool.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.

Questions that are answered by this command:

  • how to tag a group of files track number in alphabetical order id3v2?
back to the find tool