Organize music files: Difference between revisions
m remove deprecated (and commented) icon template |
m Text replacement - "<(\/?)source" to "<$1syntaxhighlight" |
||
| (One intermediate revision by one other user not shown) | |||
| 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. | ||
[[Category:Music]] | [[Category:Music]] | ||
[[Category:Files]] | |||