docs
[mirrors/Programs.git] / bash / bash-synthesizer / synth.bash
1 #!/bin/bash
2 {
3 for x in {0..100}; {
4 for i in {-2..2}; {
5 i=$[$i*$x];
6 echo -ne "\x$i";
7 }
8 }
9 } | aplay # -r 44100
This page took 0.261358 seconds and 4 git commands to generate.