10 lines
137 B
Perl
10 lines
137 B
Perl
|
#!/usr/bin/perl -w
|
||
|
|
||
|
use strict;
|
||
|
use Win32::Sound;
|
||
|
|
||
|
Win32::Sound::Volume(65535);
|
||
|
|
||
|
while (<*.wav>) {
|
||
|
Win32::Sound::Play($_);
|
||
|
}
|