# $line is the current line # @bypList is the array containing all lines in the skip file sub check_bypass { my $line= shift; my @bypList= @_; my $ret= 1; foreach(@bypList) { if($line=~/$_/i) { $ret= 0; } } return $ret; }