Help for this page

Select Code to Download


  1. or download this
    my $matches = 0;
    open FILE, ">filename.txt" or die $!;
    while (my $ethernet = <FILE>) {
    
  2. or download this
    if ($ethernet=~/eth1\.\d{4}\@/m){
      ## do something
      matches++;
    }
    
    }