User:Birgit bachler/clapping: Difference between revisions

From XPUB & Lens-Based wiki
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
<source lang="bash">
<source lang="bash">
notes="c c c r c c r c r c c r"
cat << STOP
     for ((j=0; j<12; j++))
@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 7: Line 23:
         echo $notes
         echo $notes
         done
         done
     notes=${notes:2}" "${notes::2}
     notes=${notes:2}${notes::2}
     done
     done
</source>


<source lang="bash">
 
notes="c c c r c c r c r c c r"
cat << STOP
     for ((j=0; j<12; j++))
}
 
@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 20: Line 45:
         done
         done
     done
     done
cat << STOP
}
}
STOP
</source>
</source>

Latest revision as of 16: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