Help for this page

Select Code to Download


  1. or download this
    C:\>perl script.pl outfile
    C:\>perl script.pl ">outfile"
    
  2. or download this
    my $openmode = '>';
    if($outfile =~ m/\A>/xms)
    ...
        $outfile =~ s/\A>//xms;
    }
    open($filehandle, $openmode, $outfile);