User:Birgit bachler/clapping: Difference between revisions
(Created page with "notes="c c c r c c r c r c c r" for ((j=0; j<12; j++)) do for ((i=0; i<12; i++)) do echo $notes done notes=${notes:2}" "${notes::2} ...") |
No edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
notes="c c c r c c r c r c c r" | <source lang="bash"> | ||
for ((j=0; j< | cat << STOP | ||
@head { | |||
\$time_sig 4/4 | |||
\$tempo 120 | |||
} | |||
@body { | |||
@channel 1 { | |||
\$patch 34 | |||
\$octave 3 | |||
\$length 8 | |||
STOP | |||
notes="c c c r c c r c r c c r " | |||
for ((j=0; j<13; j++)) | |||
do | do | ||
for ((i=0; i<12; i++)) | for ((i=0; i<12; i++)) | ||
Line 6: | Line 23: | ||
echo $notes | echo $notes | ||
done | done | ||
notes=${notes:2} | notes=${notes:2}${notes::2} | ||
done | done | ||
notes="c c c r c c r c r c c r" | |||
for ((j=0; j< | cat << STOP | ||
} | |||
@channel 2 { | |||
\$patch 34 | |||
\$length 8 | |||
\$octave 3 | |||
STOP | |||
notes="c c c r c c r c r c c r " | |||
for ((j=0; j<13; j++)) | |||
do | do | ||
for ((i=0; i<12; i++)) | for ((i=0; i<12; i++)) | ||
Line 17: | Line 45: | ||
done | done | ||
done | done | ||
cat << STOP | |||
} | |||
} | |||
STOP | |||
</source> |
Latest revision as of 15:03, 12 October 2010
cat << STOP
@head {
\$time_sig 4/4
\$tempo 120
}
@body {
@channel 1 {
\$patch 34
\$octave 3
\$length 8
STOP
notes="c c c r c c r c r c c r "
for ((j=0; j<13; j++))
do
for ((i=0; i<12; i++))
do
echo $notes
done
notes=${notes:2}${notes::2}
done
cat << STOP
}
@channel 2 {
\$patch 34
\$length 8
\$octave 3
STOP
notes="c c c r c c r c r c c r "
for ((j=0; j<13; j++))
do
for ((i=0; i<12; i++))
do
echo $notes
done
done
cat << STOP
}
}
STOP