Help for this page

Select Code to Download


  1. or download this
    if (/\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/){
      s/\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/xxx.xxx.xxx.xxx/g;
      print VPNOUTFILE "$_";
    }
    
  2. or download this
    if (s/\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}/xxx.xxx.xxx.xxx/g) {
      print VPNOUTFILE "$_";
    }
    
  3. or download this
    if (s/\d+\.\d+\.\d+\.\d+/xxx.xxx.xxx.xxx/g) {
      print VPNOUTFILE "$_";
    }