Help for this page

Select Code to Download


  1. or download this
    # Read passwd files from @ARGV, outputting one record per
    # username
    ...
      print;
      $users{$user} = 1;
    }
    
  2. or download this
    # Read passwd files from @ARGV, outputting one record per
    # username.  Duplicate usernames are renamed to be unique
    ...
      print;
      $users{$user} = 1;
    }