Forrest logo
back to the find tool

find:ai:684c6

ass a id3v2 track tag to files using find sort and xargs
$ find . -type f -name '*.mp3' | sort | xargs -I {} id3v2 --song 'Track Name' -a 'Artist' -A 'Album' {}
try on your machine

This command finds all mp3 files in the current directory and subdirectories, sorts them, and then adds the id3v2 track tag with the specified song name, artist, and album to each file.

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:

  • ass a id3v2 track tag to files using find sort and xargs ?
back to the find tool