Files
ubin/cuesplit.sh
2020-03-06 15:58:17 +01:00

8 lines
113 B
Bash
Executable File

#!/bin/bash
FLAC=$(find . -iname "*.flac")
CUE=$(find . -iname "*.cue")
shnsplit -f "$CUE" -t "%n %t" "$FLAC"