Help for this page

Select Code to Download


  1. or download this
    $ perl -MO=Deparse -ane '$s = ""; foreach (@F) { /(\d+)-(\d+)/ and $2 
    +- $1 >= 30 and $s .= " $1-$2" } print "$F[0]$s\n" if $s'
    
    ...
        }
        print "$F[0]$s\n" if $s;
    }
    
  2. or download this
    #!/usr/bin/env perl
    use warnings;
    ...
        }
        print "$fields[0]$s\n" if $s;
    }