Skip to content

Instantly share code, notes, and snippets.

@tabrindle
Created July 18, 2016 01:51
Show Gist options
  • Save tabrindle/26d69862c70b82ea255d09ae3dd4b934 to your computer and use it in GitHub Desktop.
Save tabrindle/26d69862c70b82ea255d09ae3dd4b934 to your computer and use it in GitHub Desktop.
Convert directory files to FLAC, then create a .m3u
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