openmind ☃   November 01, 2008  ☃  cuesplit.sh  (, )

#!/bin/bash
# split files -- works on APE, SHN, FLAC, WAV

if [ $# -ne 2 ]
then
  echo "Usage:  `basename $0` <.cue> <.flac|.ape|.wav>"
  exit 65
fi
cuebreakpoints $1 | shnsplit -o flac -f $1 -t "%n - %t" $2

blog comments powered by Disqus