Skip to content

Instantly share code, notes, and snippets.

@aplsms
aplsms / split_batch_flack.sh
Created April 2, 2018 23:08 — forked from vinsentru/split_batch_flack.sh
Split a deep folders structure (like discography) containing *.cue and *.flack
find . -type f -iname "*.cue" | while read dir; do dirname=$(dirname "$dir"); echo $dirname; pushd "$dirname"; split2flac -cue *.cue *.flac; popd; done