Help for this page

Select Code to Download


  1. or download this
    perl -ne 'next if 0 == $. % 25; print' filename
    
  2. or download this
    #!/usr/local/bin/perl --
    use strict;
    use warnings;
    ...
        next if 0 == $. % $remove_lines_modulo;
        print;
    }
    
  3. or download this
    #!/usr/local/bin/perl --
    use strict;
    ...
        next if 0 == $. % $remove_lines_modulo;
        print;
    }