Help for this page

Select Code to Download


  1. or download this
    perl -ne 'print if /^("This is really important"|"This is very importa
    +nt to you"|"This is also important")$/' dread.log > warnings.txt
    
  2. or download this
    use strict; use warnings;
    open DREAD, "dread.log" or die "Can't open input file";
    ...
    
    close DREAD;
    close OUT;