docs
[mirrors/Programs.git] / bash / bash-synthesizer / synth.bash
CommitLineData
21c4e167
H
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.141389 seconds and 4 git commands to generate.