comparison makeHornInF.sh @ 348:b8ea9cfb3546

Correct arithmetic expression in makeHornInF.sh.
author Jim Hague <jim.hague@acm.org>
date Tue, 13 Aug 2013 00:50:02 +0100
parents b4a0161e8870
children afca0a74893b
comparison
equal deleted inserted replaced
347:33987ee58985 348:b8ea9cfb3546
8 fi 8 fi
9 9
10 # Transpose down (return 0) if top note was > e (> a for horn). 10 # Transpose down (return 0) if top note was > e (> a for horn).
11 transposedown() 11 transposedown()
12 { 12 {
13 return $(($2 <= 109)) 13 return (($2 <= 109))
14 } 14 }
15 15
16 dir=`pwd` 16 dir=`pwd`
17 17
18 booke=$dir/$1 18 booke=$dir/$1