speedreeder

DNS2

May 13th, 2012
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.17 KB | None | 0 0
  1. my @splitDNSFile;
  2. my @records;
  3.  
  4. #start looping through each line
  5. foreach $line (@DNSfile) {
  6.     @splitDNSFile = split(/\s+/, $line);
  7.     push(@records, @splitDNSFile); 
  8. }
Advertisement
Add Comment
Please, Sign In to add comment