Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
        $. >= $start && $. <= $stop and print "$.: $_";
        }
    close $fh;
    
  2. or download this
    $ perl extract.pl 5 8 extract.pl
    5: use autodie;
    ...
    7: sub usage
    8: {
    $
    
  3. or download this
    $ perl -wne'5..8 and print' extract.pl
    use autodie;
    ...
    sub usage
    {
    $