Help for this page

Select Code to Download


  1. or download this
    @{ $netifaces->{ $_ } }{ @nets } = (1) x @nets for @eths;
       ^^^^^^^^^^ a hash reference
    ...
    
    @{ ... }{ @nets } = (1) x @nets ...;
           is assigned ^ ^^^^^^^^^^^ a list of '1's the size of @nets
    
  2. or download this
    @{ $netifaces->{ $_ } }{ @nets } = (1) x @nets for @eths;