Help for this page

Select Code to Download


  1. or download this
    foreach $key (keys %UIDS) {
      if ($key eq $name) {
    ...
        print TMP $line;
      }
    }
    
  2. or download this
    $uid = $UIDS{$name} if exists $UIDS{$name};
    print TMP join ':', $name, $passwd, $uid, $gid, $gcos, $dir, $shell;