Open main menu

Changes

291 bytes added ,  22:13, 19 February 2010
m
adds more deletions
One of the file system artifacts that come from using Windows is "desktop.ini" files in your music directories. You can get rid of these with a simplefind command
<source lang="bash">
# look first before you leap
find ~/Music -name desktop.ini
# yeah, we don't want any of those so remove them
find ~/Music -name desktop.ini -exec rm {} \;
# same thing with sfv, nfo, and m3u files
find ~/Music -name '*.sfv' -exec rm {} \;
find ~/Music -name '*.nfo' -exec rm {} \;
find ~/Music -name '*.m3u' -exec rm {} \;
</source>
4,558

edits