Organize music files: Difference between revisions
m added Category:Files using HotCat |
m Text replacement - "<(\/?)source" to "<$1syntaxhighlight" |
||
| Line 35: | Line 35: | ||
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 simple find command | 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 simple find command | ||
< | <syntaxhighlight lang="bash"> | ||
# look first before you leap | # look first before you leap | ||
find ~/Music -name desktop.ini | find ~/Music -name desktop.ini | ||
| Line 44: | Line 44: | ||
find ~/Music -name '*.nfo' -exec rm {} \; | find ~/Music -name '*.nfo' -exec rm {} \; | ||
find ~/Music -name '*.m3u' -exec rm {} \; | find ~/Music -name '*.m3u' -exec rm {} \; | ||
</ | </syntaxhighlight> | ||
One of the interesting notes about the project is that they've moved to using Git for managing their source code. | One of the interesting notes about the project is that they've moved to using Git for managing their source code. | ||