Help for this page

Select Code to Download


  1. or download this
    grep $phone_num file1 file2 file3
    
  2. or download this
    my $result = `grep $phone_num file1 file2 file3`;
    if($result) {
      print "number is in blocked list";
    }