Find duplicate mp3 files from MusicBrainz tagger


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. # print them
  2. find . -regex '.*([0-9])\..*'
  3.  
  4. # count them
  5. find . -regex '.*([0-9])\..*' | wc -l
  6.  
  7. # delete them
  8. find . -regex '.*([0-9])\..*' -delete

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.