- or download this
use warnings;
use strict;
- or download this
if( $nomer_vosproizvodyshchego_protsessu=fork ){
- or download this
my $pid = fork();
die "Fork failed\n" unless defined $pid;
...
$| = 1;
exec @args;
}
- or download this
# Same thing? -- I.e. not working?
$|=1;
$FIFO->autoflush( 1 );
- or download this
print $FIFO 'pause';
- or download this
for( $i=0; $i<=$#svitok_na_vosproizvedenie; $i++ ){
system( '/usr/bin/mplayer -slave -input file='.$svitok_truby.' '.$
+svitok_na_vosproizvedenie_kom[$i] );
}
- or download this
unlink $svitok_truby;
- or download this
#!/usr/bin/perl
use strict;
...
END {
unlink $svitok_truby;
}