When I run this script I don't here any beeps - I suppose it is because there is no speaker attached to the mainboard.
Is there a way to redirect this beeps to the "normal" audio?
#!/usr/bin/env perl
use warnings;
use strict;
$|++;
my $beep = "\07";
print $beep;
sleep 2;
print $beep;
sleep 2;
print $beep;