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