Help for this page

Select Code to Download


  1. or download this
    print if !/cr\d$/ && $_ = (split)[3];
    
  2. or download this
    if (!/cr\d$/ && s/^confederation-as-router:\W+\d\W+\d\W//) {
       ...
    }
    
  3. or download this
    if (!/cr\d$/ && ($host, $last) = (split)[0,3]) {
       print $last if $host eq 'confederation-as-router:';
    }