Created
July 18, 2016 01:51
-
-
Save tabrindle/26d69862c70b82ea255d09ae3dd4b934 to your computer and use it in GitHub Desktop.
Convert directory files to FLAC, then create a .m3u
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for FILE in *; do flac -8 $FILE; done; | |
for FILE in *; do echo "$FILE" >> "${PWD##*/}".m3u; done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment