Help for this page

Select Code to Download


  1. or download this
    local $/ = '';
    while (<>) {
       next if /\A.*\nD$/m;
       print;
    }
    
  2. or download this
    local $/ = '';
    while (<>) {
    ...
       next if $hdr2 eq 'D';
       print;
    }