whoops...

This commit is contained in:
Jonathan Campbell 2016-10-26 12:55:33 -07:00
parent 6d067ead30
commit c49c3f4744

View File

@ -6,7 +6,7 @@
# get the track names. DOSBox-X always writes track names # get the track names. DOSBox-X always writes track names
declare -a NAMES declare -a NAMES
for x in `ffprobe dosbox_000.mt.avi 2>&1 | grep title | cut -d ':' -f 2 | sed -e 's/^ *//'`; do for x in `ffprobe "$1" 2>&1 | grep title | cut -d ':' -f 2 | sed -e 's/^ *//'`; do
NAMES=("${NAMES[@]}" "$x") NAMES=("${NAMES[@]}" "$x")
done done