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