Help for this page

Select Code to Download


  1. or download this
    my $parameter_output = `echo "\n" |programname -help`;
    
  2. or download this
    pipe (IN,OUT);
    my $pid = fork ();
    ...
    
     
    }
    
  3. or download this
    sub print_it {print "\n"};
    my $SIG{INT}=\&print_it;
    ...
    
     
    }