Return to Snippet

Revision: 14867
at June 15, 2009 15:11 by kmorey


Initial Code
# print them
find . -regex '.*([0-9])\..*'

# count them
find . -regex '.*([0-9])\..*' | wc -l

# delete them
find . -regex '.*([0-9])\..*' -delete

Initial URL

                                

Initial Description

                                

Initial Title
Find duplicate mp3 files from MusicBrainz tagger

Initial Tags

                                

Initial Language
Bash