- or download this
use Win32::Sound;
Win32::Sound::Play('SystemDefault',SND_ASYNC);
- or download this
system('paplay /usr/share/sounds/gnome/default/alert/sonar.ogg');
- or download this
use File::Which;
my $paplay_path = which 'paplay';
- or download this
my $pid = fork;
if ( !$pid ) {
...
}
# parent proc continues here