Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    
  2. or download this
    if( $nomer_vosproizvodyshchego_protsessu=fork ){
    
  3. or download this
     my $pid = fork();
        die "Fork failed\n" unless defined $pid;
    ...
            $| = 1;
            exec @args;
        }
    
  4. or download this
      # Same thing? -- I.e. not working?
      $|=1;
      $FIFO->autoflush( 1 );
    
  5. or download this
          print $FIFO 'pause';
    
  6. 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] );
      }
    
  7. or download this
    unlink $svitok_truby;
    
  8. or download this
    #!/usr/bin/perl
    use strict;
    ...
    END {
        unlink $svitok_truby;
    }