Help for this page

Select Code to Download


  1. or download this
    @users = grep { $_ } @users; #eleminate undef elements
    
  2. or download this
    next unless $user; #after the chomp (which could be done on the whole 
    +array outside the loop
    print $user . '.mydomain.com' if $user;