Help for this page

Select Code to Download


  1. or download this
    perl -ne'print if /^\[moo\]/../^\[cow\]/ and !/^\[/' log.log
    
  2. or download this
    use strict;
    use warnings;
    ...
          print unless /^\[/;
       }
    }