Help for this page

Select Code to Download


  1. or download this
    $x = `gzgrep $y <PATH>`;
    if( not $x ) {
        $x= `gzgrep -i <TERM> <PATH>`;
    }
    
  2. or download this
    $x = `gzgrep $y <PATH>` || `gzgrep -i <TERM> <PATH>`;
    
  3. or download this
    use strict;
    use warnings;