Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    my @arr = read_file($filename);
    my @output= map{ $data=~s/C_USERNAME/$_/rg} @arr;
    print @output;
    
  2. or download this
    use strict;
    use warnings;
    ...
    my @output1= map{ $data=~s/IP/$_/rg} @arr1;
    print @output;
    print @output1;