Help for this page

Select Code to Download


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