#!/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
#!/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