Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Quick'n'dirty shell command..' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Quick'n'dirty shell command..
Authored by: HugoTheFrog on Jul 29, '04 09:21:04PM
Here's a quick command line to do what the above poster suggested..

find . -name '*\ 1.mp3' -print0 | xargs -0 rm
Run this from your ~/Music/iTunes/iTunes Music directory. NB: the escaped space ('\ ') will mean files like Chapter11.mp3 won't get deleted - but if you have 'Chapter 1.mp3' it will get deleted! User beware!

[ Reply to This | # ]