From b5ce2d9d39f394418a5bcc515f5bd687fcdf8182 Mon Sep 17 00:00:00 2001 From: Jim Hague Date: Wed, 20 Feb 2013 12:48:02 +0000 Subject: [PATCH] Add 'clef=bass' into the converted output. This doesn't affect output from abcm2ps, which assumes bass clef for a middle=D, but I like the idea of being more explicit. --- makeCello.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makeCello.sh b/makeCello.sh index 8a301c4..d778ea0 100755 --- a/makeCello.sh +++ b/makeCello.sh @@ -33,5 +33,5 @@ find $booke -name "*.abc" | sort | middle="D" fi name=`basename $filename .abc` - sed -e "/^ *K:/s/$/ middle=$middle/" $filename > $outdir/$name.abc + sed -e "/^ *K:/s/$/ clef=bass middle=$middle/" $filename > $outdir/$name.abc done