Help for this page

Select Code to Download


  1. or download this
    while(<>){
        print "$1;\n" if /^(Key [0-5] 0x[\da-f]{14})/i;
    ...
            print "$match;\n";
        }
    }
    
  2. or download this
    
    perl -ni -le 'print "$1;" if /^(Key [0-5] 0x[\da-f]{14})/i' file.txt