-
-
Save aplsms/feccdbc53b231931c1ad5fa75ead690f to your computer and use it in GitHub Desktop.
Split a deep folders structure (like discography) containing *.cue and *.flack
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
| find . -type f -iname "*.cue" | while read dir; do dirname=$(dirname "$dir"); echo $dirname; pushd "$dirname"; split2flac -cue *.cue *.flac; popd; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment