On 23/01/2010, joshua stein <[email protected]> wrote: > > Can someone give a hin on how to make the speaker to beep for example with > > a command or a C program ? > > > echo > > (that's control+v, then control+g)
or
/usr/bin/printf "\a"
or
putchar('\a');
C.

