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


Click here to return to the 'Seeing Files You haven't re-done yet.' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Seeing Files You haven't re-done yet.
Authored by: taxi on Jun 25, '04 09:32:50AM

Do'h, forgot to put this in the last post:

If you want to see which files you haven't re-converted yet try the following (in the Terminal, naturally, replacing ~shared/Music with wherever you store your iTunes):

find ~shared/Music -name *.mp3

To see how many files you have done, pipe this through wc (that's lowercase L):

find ~shared/Music -name *.mp3 | wc -l

To get a percentage value, to see how far you are through your library, try:

echo $((`find ~shared/Music -name *.m4a | wc -l` *100 / `find ~shared/Music -name *.m?? | wc -l`))

All on one line.

And to see if you have done an album yet (quicker than finding it in iTunes Library):

find ~shared/Music -name *.mp3 | grep Supergrass

Have fun!



[ Reply to This | # ]